Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
add duckdb to joindiff tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sung Won Chung committed Oct 10, 2023
1 parent a759964 commit f26e11b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_joindiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
db.MySQL,
db.Snowflake,
db.BigQuery,
db.DuckDB,
db.Oracle,
db.Redshift,
db.Presto,
Expand All @@ -32,7 +33,7 @@
test_each_database = test_each_database_in_list(TEST_DATABASES)


@test_each_database_in_list({db.Snowflake, db.BigQuery})
@test_each_database_in_list({db.Snowflake, db.BigQuery, db.DuckDB})
class TestCompositeKey(DiffTestCase):
src_schema = {"id": int, "userid": int, "movieid": int, "rating": float, "timestamp": datetime}
dst_schema = {"id": int, "userid": int, "movieid": int, "rating": float, "timestamp": datetime}
Expand Down

0 comments on commit f26e11b

Please sign in to comment.