You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertnode.query(f"SELECT count() FROM s3(s3_conn, filename='{s3_table}/commit_*', format=LineAsString)") =='0\n', "Background operations completed even with the table dropped"
# The pointer to the destination table is still valid, so the write will continue
289
-
node.query(f"DROP TABLE {s3_table}")
290
-
291
-
# give some time for the export to finish
292
-
time.sleep(10)
293
-
294
-
# not sure this is the expected behavior, but adding until we make a decision
295
-
assertnode.query(f"SELECT count() FROM s3(s3_conn, filename='{s3_table}/commit_*', format=LineAsString)") !='0\n', "Background operations did not complete after dropping the destination table"
0 commit comments