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

Commit ca375ad

Browse files
author
Sung Won Chung
committed
remove prints
1 parent 887cd5b commit ca375ad

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

data_diff/databases/base.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ def query_table_schema(self, path: DbPath) -> Dict[str, RawColumnInfo]:
10461046
accessing the schema using a SQL query.
10471047
"""
10481048
rows = self.query(self.select_table_schema(path), list, log_message=path)
1049-
print(f"path: {path}")
1049+
10501050
if not rows:
10511051
raise RuntimeError(f"{self.name}: Table '{'.'.join(path)}' does not exist, or has no columns")
10521052

@@ -1061,10 +1061,7 @@ def query_table_schema(self, path: DbPath) -> Dict[str, RawColumnInfo]:
10611061
)
10621062
for r in rows
10631063
}
1064-
print(f"d: {d}")
1065-
print(f"len(d): {len(d)}")
1066-
print(f"rows: {rows}")
1067-
print(f"len(rows): {len(rows)}")
1064+
10681065
assert len(d) == len(rows)
10691066
return d
10701067

data_diff_demo

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit d0784e8de9fc7958f91a599fa454be4f8b09c60d

datafold-demo-sung

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 6ebfb06d1e0937309384cdb4955e6dbd23387256

demo

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 3cf4d11956ebc0f000a62646deec88cdd321b3b4

0 commit comments

Comments
 (0)