joeyutong commented on code in PR #4090:
URL: https://github.com/apache/calcite/pull/4090#discussion_r1886223230
##########
testkit/src/main/java/org/apache/calcite/test/SqlOperatorTest.java:
##########
@@ -11732,7 +11733,8 @@ void assertSubFunReturns(boolean binary, String s, int
start,
f.checkScalar("least(CAST(NULL AS INTEGER), CAST(NULL AS INTEGER))",
isNullValue(),
"INTEGER");
};
- final List<SqlLibrary> libraries = list(SqlLibrary.POSTGRESQL,
SqlLibrary.REDSHIFT);
+ final List<SqlLibrary> libraries =
+ list(SqlLibrary.POSTGRESQL, SqlLibrary.REDSHIFT, SqlLibrary.SPARK);
Review Comment:
It inherits functions from PG
```
// SqlLibrary.java
REDSHIFT("r", "redshift", POSTGRESQL)
```
--
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]