We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d0934 commit cf6bcbcCopy full SHA for cf6bcbc
digital_land/expectations/operation.py
@@ -189,10 +189,13 @@ def count_deleted_entities(
189
190
191
def check_columns(conn, expected: dict):
192
+ # This operation checks that the db connection provided contains the tables with the expected columns provided
193
+
194
+ # expected: a dictionary containing table names as keys, with a list of their expected columns as the value
195
196
details = []
197
success_count = 0
198
failure_count = 0
- # expected: a dictionary containing table names as keys, with their a list of their expected columns as the value
199
for k, v in expected.items():
200
table_name = k
201
expected_columns = v
0 commit comments