dawidwys commented on a change in pull request #10308: [FLINK-14904][table]
Rename ANY type to RAW type
URL: https://github.com/apache/flink/pull/10308#discussion_r350123520
##########
File path:
flink-table/flink-table-planner-blink/src/main/scala/org/apache/flink/table/planner/plan/schema/GenericRelDataType.scala
##########
@@ -18,24 +18,23 @@
package org.apache.flink.table.planner.plan.schema
-import org.apache.flink.table.types.logical.TypeInformationAnyType
-
import org.apache.calcite.rel.`type`.RelDataTypeSystem
import org.apache.calcite.sql.`type`.{ArraySqlType, BasicSqlType, MapSqlType,
SqlTypeName}
-
import java.lang
+import org.apache.flink.table.types.logical.TypeInformationRawType
+
/**
- * Generic type for encapsulating Flink's [[TypeInformationAnyType]].
+ * Generic type for encapsulating Flink's [[TypeInformationRawType]].
*
* @param genericType LogicalType to encapsulate
* @param nullable flag if type can be nullable
* @param typeSystem Flink's type system
*/
class GenericRelDataType(
- val genericType: TypeInformationAnyType[_],
- val nullable: Boolean,
- typeSystem: RelDataTypeSystem)
+ val genericType: TypeInformationRawType[_],
Review comment:
nit: Is the additional indent necessary?
----------------------------------------------------------------
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