We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61ee73e commit 96cddaeCopy full SHA for 96cddae
mongodb/src/test/java/org/apache/calcite/adapter/mongodb/MongoAdapterTest.java
@@ -819,6 +819,12 @@ private static Consumer<List> mongoChecker(final String... expected) {
819
};
820
}
821
822
+ @Test void testCalciteFunc() {
823
+ assertModel(MODEL)
824
+ .query("select CHAR_LENGTH(state) from zips")
825
+ .runs();
826
+ }
827
+
828
@Test void testColumnQuoting() {
829
assertModel(MODEL)
830
.query("select state as \"STATE\", avg(pop) as \"AVG(pop)\" "
0 commit comments