* [improve](distinct agg) add check of hash table to emplace value
optimization for aggregation hash_table_lazy_emplace
select c_name from customer union select c_name from customer this sql used agg node to get distinct row of c_name, so it's no need to wait for inserted all data to hash map, could output the data which it's inserted into hash map successed.