Skip to content

Commit

Permalink
Add test for TIME WITHOUT TIME ZONE
Browse files Browse the repository at this point in the history
  • Loading branch information
HerveMignot committed Dec 3, 2021
1 parent a62c0db commit ae64e17
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_ddlparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
Col_12 money,
Col_13 date,
Col_14 time,
Col_14_1 time without time zone,
Col_15 datetime,
Col_16 timestamp,
Col_17 timestamp without time zone,
Expand Down Expand Up @@ -87,6 +88,7 @@
{"name": "Col_12", "type": "MONEY", "length": None, "scale": None},
{"name": "Col_13", "type": "DATE", "length": None, "scale": None},
{"name": "Col_14", "type": "TIME", "length": None, "scale": None},
{"name": "Col_14_1", "type": "TIME WITHOUT TIME ZONE", "length": None, "scale": None},
{"name": "Col_15", "type": "DATETIME", "length": None, "scale": None},
{"name": "Col_16", "type": "TIMESTAMP", "length": None, "scale": None},
{"name": "Col_17", "type": "TIMESTAMP WITHOUT TIME ZONE", "length": None, "scale": None},
Expand Down Expand Up @@ -143,6 +145,7 @@
'{"name": "Col_12", "type": "FLOAT", "mode": "NULLABLE"}',
'{"name": "Col_13", "type": "DATE", "mode": "NULLABLE"}',
'{"name": "Col_14", "type": "TIME", "mode": "NULLABLE"}',
'{"name": "Col_14_1", "type": "TIME", "mode": "NULLABLE"}',
'{"name": "Col_15", "type": "DATETIME", "mode": "NULLABLE"}',
'{"name": "Col_16", "type": "DATETIME", "mode": "NULLABLE"}',
'{"name": "Col_17", "type": "DATETIME", "mode": "NULLABLE"}',
Expand Down Expand Up @@ -199,6 +202,7 @@
"FLOAT64",
"DATE",
"TIME",
"TIME",
"DATETIME",
"DATETIME",
"DATETIME",
Expand Down

0 comments on commit ae64e17

Please sign in to comment.