dianfu commented on a change in pull request #8561: [FLINK-12588][python] Add
TableSchema for Python Table API.
URL: https://github.com/apache/flink/pull/8561#discussion_r288501379
##########
File path: flink-python/pyflink/table/types.py
##########
@@ -1273,6 +1318,190 @@ def _to_java_type(data_type):
raise TypeError("Not supported type: %s" % data_type)
+_primitive_to_boxed_map = {'int': 'java.lang.Integer',
+ 'long': 'java.lang.Long',
+ 'byte': 'java.lang.Byte',
+ 'short': 'java.lang.Short',
+ 'char': 'java.lang.Character',
+ 'boolean': 'java.lang.Boolean',
+ 'float': 'java.lang.Float',
+ 'double': 'java.lang.Double'}
+
+
+def is_instance_of(java_data_type, java_class):
Review comment:
is_instance_of ->_is_instance_of
----------------------------------------------------------------
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