1. Hive去重
先以两个简单的sql启发我们的话题
select count(distinct id)from order_combine;select count(id)
from (select id from order_combine group by id
) t;从执行日志当中我们可以看到二者的差异(只摘取关键部分)
# distinctStage-Stage…
一、引入 Object Oriented Adapters 二、XX 模式 aka:Wrapper (包装器) 2.1 Intent 意图
Convert the interface of a class into another interface clients expect. 将一个类的接口转换成客户希望的另外一个接口. 作为两个不兼容的接口之间的桥梁 适配器模式使…