Jackie-Jiang commented on code in PR #16025: URL: https://github.com/apache/pinot/pull/16025#discussion_r2133125826
########## pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/custom/TimestampIndexMseTest.java: ########## @@ -68,30 +74,54 @@ public void setUp() waitForAllDocsLoaded(600_000L); } + @Override protected void overrideBrokerConf(PinotConfiguration brokerConf) { String property = CommonConstants.MultiStageQueryRunner.KEY_OF_MULTISTAGE_EXPLAIN_INCLUDE_SEGMENT_PLAN; brokerConf.setProperty(property, "true"); } + @Override + protected Schema createSchema() + throws IOException { + Schema schema = super.createSchema(); + schema.addField(new DateTimeFieldSpec("ts", FieldSpec.DataType.TIMESTAMP, "TIMESTAMP", "1:DAYS")); Review Comment: Test is modified because TIMESTAMP index can only be created on LONG or TIMESTAMP column -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org