You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tw...@apache.org on 2019/05/03 13:46:48 UTC

[flink] branch master updated: [FLINK-12253][table-common] Add a INT type

This is an automated email from the ASF dual-hosted git repository.

twalthr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 906e899  [FLINK-12253][table-common] Add a INT type
906e899 is described below

commit 906e899146879ef35088df1e8c9087a6446633c0
Author: Timo Walther <tw...@apache.org>
AuthorDate: Tue Apr 30 17:21:26 2019 +0200

    [FLINK-12253][table-common] Add a INT type
---
 .../apache/flink/table/types/logical/IntType.java  | 91 ++++++++++++++++++++++
 .../table/types/logical/LogicalTypeVisitor.java    |  2 +
 .../apache/flink/table/types/LogicalTypesTest.java | 14 ++++
 3 files changed, 107 insertions(+)

diff --git a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/types/logical/IntType.java b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/types/logical/IntType.java
new file mode 100644
index 0000000..dec0567
--- /dev/null
+++ b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/types/logical/IntType.java
@@ -0,0 +1,91 @@
+/*
+ * 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.types.logical;
+
+import org.apache.flink.annotation.PublicEvolving;
+
+import java.util.Collections;
+import java.util.List;
+import java.util.Set;
+
+/**
+ * Logical type of a 4-byte signed integer with values from -2,147,483,648 to 2,147,483,647.
+ *
+ * <p>The serialized string representation is {@code INT}.
+ */
+@PublicEvolving
+public final class IntType extends LogicalType {
+
+	private static final String FORMAT = "INT";
+
+	private static final Set<String> NULL_OUTPUT_CONVERSION = conversionSet(
+		Integer.class.getName());
+
+	private static final Set<String> NOT_NULL_INPUT_OUTPUT_CONVERSION = conversionSet(
+		Integer.class.getName(),
+		int.class.getName());
+
+	private static final Class<?> DEFAULT_CONVERSION = Integer.class;
+
+	public IntType(boolean isNullable) {
+		super(isNullable, LogicalTypeRoot.INTEGER);
+	}
+
+	public IntType() {
+		this(true);
+	}
+
+	@Override
+	public LogicalType copy(boolean isNullable) {
+		return new IntType(isNullable);
+	}
+
+	@Override
+	public String asSerializableString() {
+		return withNullability(FORMAT);
+	}
+
+	@Override
+	public boolean supportsInputConversion(Class<?> clazz) {
+		return NOT_NULL_INPUT_OUTPUT_CONVERSION.contains(clazz.getName());
+	}
+
+	@Override
+	public boolean supportsOutputConversion(Class<?> clazz) {
+		if (isNullable()) {
+			return NULL_OUTPUT_CONVERSION.contains(clazz.getName());
+		}
+		return NOT_NULL_INPUT_OUTPUT_CONVERSION.contains(clazz.getName());
+	}
+
+	@Override
+	public Class<?> getDefaultConversion() {
+		return DEFAULT_CONVERSION;
+	}
+
+	@Override
+	public List<LogicalType> getChildren() {
+		return Collections.emptyList();
+	}
+
+	@Override
+	public <R> R accept(LogicalTypeVisitor<R> visitor) {
+		return visitor.visit(this);
+	}
+}
diff --git a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/types/logical/LogicalTypeVisitor.java b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/types/logical/LogicalTypeVisitor.java
index 21fb36f..a70fe29 100644
--- a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/types/logical/LogicalTypeVisitor.java
+++ b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/types/logical/LogicalTypeVisitor.java
@@ -45,5 +45,7 @@ public interface LogicalTypeVisitor<R> {
 
 	R visit(SmallIntType smallIntType);
 
+	R visit(IntType intType);
+
 	R visit(LogicalType other);
 }
diff --git a/flink-table/flink-table-common/src/test/java/org/apache/flink/table/types/LogicalTypesTest.java b/flink-table/flink-table-common/src/test/java/org/apache/flink/table/types/LogicalTypesTest.java
index bd61a7d..b9ccfa9 100644
--- a/flink-table/flink-table-common/src/test/java/org/apache/flink/table/types/LogicalTypesTest.java
+++ b/flink-table/flink-table-common/src/test/java/org/apache/flink/table/types/LogicalTypesTest.java
@@ -22,6 +22,7 @@ import org.apache.flink.table.types.logical.BinaryType;
 import org.apache.flink.table.types.logical.BooleanType;
 import org.apache.flink.table.types.logical.CharType;
 import org.apache.flink.table.types.logical.DecimalType;
+import org.apache.flink.table.types.logical.IntType;
 import org.apache.flink.table.types.logical.LogicalType;
 import org.apache.flink.table.types.logical.SmallIntType;
 import org.apache.flink.table.types.logical.TinyIntType;
@@ -149,6 +150,19 @@ public class LogicalTypesTest {
 		);
 	}
 
+	@Test
+	public void testIntType() {
+		testAll(
+			new IntType(),
+			"INT",
+			"INT",
+			new Class[]{Integer.class, int.class},
+			new Class[]{Integer.class},
+			new LogicalType[]{},
+			new IntType(false)
+		);
+	}
+
 	// --------------------------------------------------------------------------------------------
 
 	private static void testAll(