We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75939df commit d5201afCopy full SHA for d5201af
test/cluster/statement-logging/statement-logging.td
@@ -323,3 +323,9 @@ ROLLBACK
323
> SELECT mseh.began_at, mslh.occurred_at
324
FROM mz_internal.mz_statement_execution_history mseh JOIN mz_internal.mz_statement_lifecycle_history mslh ON (mseh.id = mslh.statement_id)
325
WHERE mslh.event_type = 'execution-began' AND mseh.began_at != mslh.occurred_at;
326
+
327
+# Check that all statements are marked as finished.
328
+> SELECT count(*)
329
+ FROM mz_internal.mz_recent_activity_log
330
+ WHERE (finished_at IS NULL OR finished_status IS NULL) AND sql NOT LIKE '%__FILTER-OUT-THIS-QUERY__%';
331
+0
0 commit comments