mihaibudiu commented on code in PR #3762:
URL: https://github.com/apache/calcite/pull/3762#discussion_r1578326521


##########
core/src/main/java/org/apache/calcite/sql/fun/SqlLibraryOperatorTableFactory.java:
##########
@@ -117,8 +117,7 @@ private SqlOperatorTable create(ImmutableSet<SqlLibrary> 
librarySet) {
     SqlOperatorTable operatorTable = SqlOperatorTables.of(list);
     if (standard) {
       operatorTable =
-          SqlOperatorTables.chain(SqlStdOperatorTable.instance(),
-              operatorTable);
+          SqlOperatorTables.chain(operatorTable, 
SqlStdOperatorTable.instance());

Review Comment:
   This may cause problems for other people. Ideally you want to do this just 
for your tests.



-- 
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]

Reply via email to