imay commented on a change in pull request #1599: Add bitmap Agg type and Udaf
URL: https://github.com/apache/incubator-doris/pull/1599#discussion_r311495918
##########
File path: be/src/olap/field.h
##########
@@ -363,6 +326,137 @@ uint32_t Field::hash_code(const CellType& cell, uint32_t
seed) const {
return _type_info->hash_code(cell.cell_ptr(), seed);
}
+class CharField: public Field {
+public:
+ explicit CharField(const TabletColumn& column):Field(column) {
+ }
+
+ //the char field is especial, which need the _length info when consume raw
data
Review comment:
```suggestion
// the char field is especial, which need the _length info when consume
raw data
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]