Skip to content

Commit

Permalink
Merge pull request #49 from DalgoT4D/ignore-airbyte-emitted-at
Browse files Browse the repository at this point in the history
ignore _airbyte_emitted_at during comparison
  • Loading branch information
fatchat authored Dec 5, 2023
2 parents d9d0897 + c47a3d0 commit c6fd730
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/dbdiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def db2csv(
ref_schema,
tablename,
columns_specs[tablename],
["_airbyte_ab_id"],
["_airbyte_ab_id", "_airbyte_emitted_at"],
ref_csvfile,
)

Expand All @@ -125,7 +125,7 @@ def db2csv(
comp_schema,
tablename,
columns_specs[tablename],
["_airbyte_ab_id"],
["_airbyte_ab_id", "_airbyte_emitted_at"],
comp_csvfile,
)

Expand Down

0 comments on commit c6fd730

Please sign in to comment.