twalthr commented on a change in pull request #11081: [FLINK-16033][table-api] Introduced Java Table API Expression DSL URL: https://github.com/apache/flink/pull/11081#discussion_r385016651
########## File path: flink-table/flink-table-api-java/src/test/java/org/apache/flink/table/expressions/resolver/ExpressionResolverTest.java ########## @@ -0,0 +1,391 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.flink.table.expressions.resolver; + +import org.apache.flink.table.annotation.DataTypeHint; +import org.apache.flink.table.annotation.FunctionHint; +import org.apache.flink.table.annotation.InputGroup; +import org.apache.flink.table.api.DataTypes; +import org.apache.flink.table.api.TableConfig; +import org.apache.flink.table.api.TableSchema; +import org.apache.flink.table.catalog.DataTypeFactory; +import org.apache.flink.table.catalog.FunctionLookup; +import org.apache.flink.table.catalog.ObjectIdentifier; +import org.apache.flink.table.catalog.UnresolvedIdentifier; +import org.apache.flink.table.delegation.PlannerTypeInferenceUtil; +import org.apache.flink.table.expressions.CallExpression; +import org.apache.flink.table.expressions.Expression; +import org.apache.flink.table.expressions.FieldReferenceExpression; +import org.apache.flink.table.expressions.ResolvedExpression; +import org.apache.flink.table.expressions.ValueLiteralExpression; +import org.apache.flink.table.functions.BuiltInFunctionDefinition; +import org.apache.flink.table.functions.BuiltInFunctionDefinitions; +import org.apache.flink.table.functions.FunctionDefinition; +import org.apache.flink.table.functions.FunctionIdentifier; +import org.apache.flink.table.functions.ScalarFunction; +import org.apache.flink.table.operations.CatalogQueryOperation; +import org.apache.flink.table.operations.QueryOperation; +import org.apache.flink.table.types.DataType; +import org.apache.flink.table.types.inference.TypeInferenceUtil; +import org.apache.flink.table.types.logical.LogicalType; +import org.apache.flink.table.types.logical.utils.LogicalTypeParser; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import java.util.Arrays; +import java.util.Collection; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Optional; +import java.util.stream.Collectors; + +import static org.apache.flink.table.api.Expressions.$; +import static org.apache.flink.table.api.Expressions.call; +import static org.apache.flink.table.api.Expressions.range; +import static org.apache.flink.table.api.Expressions.withColumns; +import static org.apache.flink.table.expressions.ApiExpressionUtils.valueLiteral; +import static org.apache.flink.table.types.utils.TypeConversions.fromLogicalToDataType; +import static org.hamcrest.CoreMatchers.equalTo; +import static org.junit.Assert.assertThat; + +/** + * This test supports only a subset of builtin functions because those functions still depend on + * planner expressions for argument validation and type inference. Supported builtin functions are: + * + * <p>- BuiltinFunctionDefinitions.EQUALS + * - BuiltinFunctionDefinitions.IS_NULL + * + * <p>Pseudo functions that are executed during expression resolution e.g.: + * - BuiltinFunctionDefinitions.WITH_COLUMNS + * - BuiltinFunctionDefinitions.WITHOUT_COLUMNS + * - BuiltinFunctionDefinitions.RANGE_TO + * - BuiltinFunctionDefinitions.FLATTEN + * + * <p>This test supports only a simplified identifier parsing logic. It does not support escaping. + * It just naively splits on dots. The proper logic comes with a planner implementation which is not + * available in the API module. + */ +@RunWith(Parameterized.class) +public class ExpressionResolverTest { + + @Parameterized.Parameters(name = "{0}") + public static Collection<TestSpec> parameters() { + return Arrays.asList( + TestSpec.test("Columns range") + .inputSchemas( + TableSchema.builder() + .field("f0", DataTypes.BIGINT()) + .field("f1", DataTypes.STRING()) + .field("f2", DataTypes.SMALLINT()) + .build() + ) + .select(withColumns(range("f1", "f2")), withColumns(range(1, 2))) + .equalTo( + new FieldReferenceExpression("f1", DataTypes.STRING(), 0, 1), + new FieldReferenceExpression("f2", DataTypes.SMALLINT(), 0, 2), + new FieldReferenceExpression("f0", DataTypes.BIGINT(), 0, 0), + new FieldReferenceExpression("f1", DataTypes.STRING(), 0, 1) + ), + + TestSpec.test("Flatten call") + .inputSchemas( + TableSchema.builder() + .field("f0", DataTypes.ROW( + DataTypes.FIELD("n0", DataTypes.BIGINT()), + DataTypes.FIELD("n1", DataTypes.STRING()) + )) + .build() + ) + .select($("f0").flatten()) + .equalTo( + new CallExpression( + FunctionIdentifier.of("get"), + BuiltInFunctionDefinitions.GET, + Arrays.asList( + new FieldReferenceExpression("f0", DataTypes.ROW( + DataTypes.FIELD("n0", DataTypes.BIGINT()), + DataTypes.FIELD("n1", DataTypes.STRING()) + ), 0, 0), + new ValueLiteralExpression("n0") + ), + DataTypes.BIGINT() + ), + new CallExpression( + FunctionIdentifier.of("get"), + BuiltInFunctionDefinitions.GET, + Arrays.asList( + new FieldReferenceExpression("f0", DataTypes.ROW( + DataTypes.FIELD("n0", DataTypes.BIGINT()), + DataTypes.FIELD("n1", DataTypes.STRING()) + ), 0, 0), + new ValueLiteralExpression("n1") + ), + DataTypes.STRING() + )), + + TestSpec.test("Builtin function calls") + .inputSchemas( + TableSchema.builder() + .field("f0", DataTypes.INT()) + .field("f1", DataTypes.STRING()) + .build() + ) + .select($("f0").isEqual($("f1"))) + .equalTo(new CallExpression( + FunctionIdentifier.of("equals"), + BuiltInFunctionDefinitions.EQUALS, + Arrays.asList( + new FieldReferenceExpression("f0", DataTypes.INT(), 0, 0), + new FieldReferenceExpression("f1", DataTypes.STRING(), 0, 1) + ), + DataTypes.BOOLEAN() + )), + + TestSpec.test("Lookup calls") Review comment: "Lookup system function call" ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
