[fix](function) fix aggregate function min() at type varchar (#7437)

This commit is contained in:
Pxl
2021-12-24 21:27:01 +08:00
committed by GitHub
parent 6d1cf599f8
commit bfa6bc3b0a

View File

@ -235,6 +235,7 @@ struct AggregateFuncTraits<OLAP_FIELD_AGGREGATION_MIN, OLAP_FIELD_TYPE_VARCHAR>
memory_copy(dst_slice->data, src_slice->data, src_slice->size);
dst_slice->size = src_slice->size;
}
dst->set_is_null(false);
}
}
};