Skip to content

Commit

Permalink
switch to TIMESTAMP_NTZ
Browse files Browse the repository at this point in the history
  • Loading branch information
attilapiros committed Aug 8, 2023
1 parent 630bbce commit d53df81
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/pyspark/testing/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,10 @@ def conf(cls):
"""
Override this in subclasses to supply a more specific conf
"""
return SparkConf()
conf = SparkConf()
conf.set("spark.sql.timestampType", "TIMESTAMP_NTZ")
return conf


@classmethod
def setUpClass(cls):
Expand Down

0 comments on commit d53df81

Please sign in to comment.