Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flink-formats/flink-protobuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ under the License.

<properties>
<!-- the same with flink-table/pom.xml -->
<janino.version>3.1.11</janino.version>
<janino.version>3.1.12</janino.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion flink-python/pyflink/table/tests/test_udf.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def udf_with_constant_params(p, null_param, tinyint_param, smallint_param, int_p
"cast (1 as SMALLINT),"
"cast (1 as INT),"
"cast (1 as BIGINT),"
"cast (1.05 as DECIMAL),"
"cast (1.05 as DECIMAL(3,2)),"
"cast (1.23 as FLOAT),"
"cast (1.98932 as DOUBLE),"
"true,"
Expand Down
13 changes: 7 additions & 6 deletions flink-table/flink-sql-parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,15 @@ under the License.
<version>${calcite.version}</version>
<exclusions>
<!--
"mvn dependency:tree" as of Calcite 1.37.0:
"mvn dependency:tree" as of Calcite 1.41.0:

[INFO] +- org.apache.calcite:calcite-core:jar:1.37.0:compile
[INFO] | +- org.apache.calcite:calcite-linq4j:jar:1.37.0:compile
[INFO] | +- org.apache.calcite.avatica:avatica-core:jar:1.25.0:compile
[INFO] +- org.apache.calcite:calcite-core:jar:1.41.0:compile
[INFO] | +- org.apache.calcite:calcite-linq4j:jar:1.41.0:compile
[INFO] | +- org.apache.calcite.avatica:avatica-core:jar:1.27.0:compile
[INFO] | +- org.apiguardian:apiguardian-api:jar:1.1.2:compile
[INFO] | +- org.checkerframework:checker-qual:jar:3.37.0:compile
[INFO] | \- org.apache.commons:commons-math3:jar:3.6.1:runtime
[INFO] | +- org.checkerframework:checker-qual:jar:3.10.0:compile
[INFO] | +- org.apache.commons:commons-math3:jar:3.6.1:runtime
[INFO] | \- org.jooq:joou-java-6:jar:0.9.4:compile

Dependencies that are not needed for how we use Calcite right now.
-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@
"org.apache.calcite.sql.SqlDrop"
"org.apache.calcite.sql.SqlExplicitModelOperator"
"org.apache.calcite.sql.SqlIntervalLiteral"
"org.apache.calcite.sql.SqlLambda"
"org.apache.calcite.runtime.Resources"
"java.util.ArrayList"
"java.util.Collections"
Expand Down Expand Up @@ -634,6 +633,7 @@
"OVERWRITING"
"PARTITIONED"
"PARTITIONS"
"UUID"
"VIRTUAL"
"ANALYZE"
"COMPUTE"
Expand Down Expand Up @@ -773,9 +773,13 @@
joinTypes: [
]

# Method for parsing "SET [OR RESET]" calls.
setOptionParserMethod: "SqlSetOption"

includePosixOperators: false
includeCompoundIdentifier: true
includeBraces: true
includeAdditionalDeclarations: false
includeParsingStringLiteralAsArrayLiteral: false
includeIntervalWithoutQualifier: false
}
Loading