tarun11Mavani commented on code in PR #16721:
URL: https://github.com/apache/pinot/pull/16721#discussion_r2326590235
##########
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/indexsegment/mutable/MutableSegmentImplRawMVTest.java:
##########
@@ -190,6 +191,10 @@ public void testDataSourceForMVColumns()
for (FieldSpec fieldSpec : _schema.getAllFieldSpecs()) {
if (!fieldSpec.isSingleValueField()) {
String column = fieldSpec.getName();
+ // Skip $partitionId virtual columns as they have different dictionary
behavior
+ if (BuiltInVirtualColumn.PARTITIONID.equals(column)) {
Review Comment:
This test is specifically for "raw MV" columns(MV columns with NO
dictionary). $partitionId always has a dictionary hence I am skipping it.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]