Skip to content

Commit

Permalink
test datetime types for TestSparkConstraintsColumnsEqualPyodbc
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelleArk committed Mar 4, 2023
1 parent cc7c7b2 commit ce8a7b1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/functional/adapter/test_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ def data_types(self, int_type, schema_int_type, string_type):
# ['1', schema_int_type, int_type],
['"1"', "string", string_type],
["true", "boolean", "BOOL"],
['array("1","2","3")', "array<string>", "LIST"],
['array(1,2,3)', "array<int>", "LIST"],
# ['array("1","2","3")', "array<string>", "LIST"],
# ['array(1,2,3)', "array<int>", "LIST"],
["cast('2019-01-01' as date)", "date", "DATETIME"],
["cast('2019-01-01' as timestamp)", "timestamp", "DATETIME"],
]


Expand Down

0 comments on commit ce8a7b1

Please sign in to comment.