clintropolis commented on code in PR #13803:
URL: https://github.com/apache/druid/pull/13803#discussion_r1146908747
##########
sql/src/test/java/org/apache/druid/sql/calcite/BaseCalciteQueryTest.java:
##########
@@ -705,6 +705,23 @@ public void testQuery(
.run();
}
+ public void testQuery(
+ final String sql,
+ final Map<String, Object> queryContext,
+ final List<Query<?>> expectedQueries,
+ final List<Object[]> expectedResults,
+ final RowSignature expectedResultSignature
+ )
+ {
+ testBuilder()
+ .sql(sql)
+ .queryContext(queryContext)
+ .expectedQueries(expectedQueries)
+ .expectedResults(expectedResults)
+ .expectedSignature(expectedResultSignature)
+ .run();
+ }
Review Comment:
removed in favor of just calling `testBuilder`, this should probably just be
done everywhere, but its kind of tedious to switch
--
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]