siddharthteotia commented on a change in pull request #4535: Implement DISTINCT
clause
URL: https://github.com/apache/incubator-pinot/pull/4535#discussion_r320624542
##########
File path:
pinot-core/src/main/java/org/apache/pinot/core/common/ObjectSerDeUtils.java
##########
@@ -425,8 +459,19 @@ public TDigest deserialize(ByteBuffer byteBuffer) {
};
// NOTE: DO NOT change the order, it has to be the same order as the
ObjectType
- private static final ObjectSerDe[] SER_DES =
- {STRING_SER_DE, LONG_SER_DE, DOUBLE_SER_DE, DOUBLE_ARRAY_LIST_SER_DE,
AVG_PAIR_SER_DE, MIN_MAX_RANGE_PAIR_SER_DE, HYPER_LOG_LOG_SER_DE,
QUANTILE_DIGEST_SER_DE, MAP_SER_DE, INT_SET_SER_DE, TDIGEST_SER_DE};
+ private static final ObjectSerDe[] SER_DES = {
+ STRING_SER_DE,
+ LONG_SER_DE,
+ DOUBLE_SER_DE,
+ DOUBLE_ARRAY_LIST_SER_DE,
+ AVG_PAIR_SER_DE,
+ MIN_MAX_RANGE_PAIR_SER_DE,
+ HYPER_LOG_LOG_SER_DE,
+ QUANTILE_DIGEST_SER_DE,
+ MAP_SER_DE,
+ INT_SET_SER_DE,
+ TDIGEST_SER_DE,
+ DISTINCT_TABLE_SER_DE};
Review comment:
Done
----------------------------------------------------------------
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]