gengliangwang commented on a change in pull request #33482:
URL: https://github.com/apache/spark/pull/33482#discussion_r674947529



##########
File path: python/pyspark/sql/types.py
##########
@@ -899,6 +899,8 @@ def _parse_datatype_json_value(json_value):
             return _all_atomic_types[json_value]()
         elif json_value == 'decimal':
             return DecimalType()
+        elif json_value == 'timestamp_ntz':
+            return TimestampType()

Review comment:
       I think we need a design for how to support TimestampNTZ type in 
PySpark. Here the `timestamp_ntz` is mapped to `TimestampType()`
   cc @HyukjinKwon 




-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to