Skip to content

Commit

Permalink
Remove "WITHOUT TIMEZONE" from test sql
Browse files Browse the repository at this point in the history
  • Loading branch information
gshank committed Oct 10, 2024
1 parent 0243ee2 commit cf1876f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dbt-tests-adapter/dbt/tests/adapter/simple_snapshot/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
email VARCHAR(50),
gender VARCHAR(50),
ip_address VARCHAR(20),
updated_at TIMESTAMP WITHOUT TIME ZONE
updated_at TIMESTAMP
);
"""

Expand All @@ -20,11 +20,11 @@
ip_address VARCHAR(20),
-- snapshotting fields
updated_at TIMESTAMP WITHOUT TIME ZONE,
test_valid_from TIMESTAMP WITHOUT TIME ZONE,
test_valid_to TIMESTAMP WITHOUT TIME ZONE,
updated_at TIMESTAMP
test_valid_from TIMESTAMP
test_valid_to TIMESTAMP
test_scd_id TEXT,
test_updated_at TIMESTAMP WITHOUT TIME ZONE
test_updated_at TIMESTAMP
);
"""

Expand Down

0 comments on commit cf1876f

Please sign in to comment.