normanj-bitquill commented on code in PR #3762:
URL: https://github.com/apache/calcite/pull/3762#discussion_r1578589576
##########
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 has been fixed. The only changes needed now are in the unit test
itself. I setup the operator table there such that PostgreSQL is first.
--
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]