decrease log level to debug1 to prevent flaky debug

pull/3900/head
Sait Talha Nisanci 2020-06-11 11:36:52 +03:00
parent 6ff4e42706
commit ff7a563c57
2 changed files with 2 additions and 2 deletions

View File

@ -435,7 +435,7 @@ SELECT create_distributed_table('referencing_table', 'ref_id', 'hash');
-- not skipping validation would result in a distributed query, which emits debug messages -- not skipping validation would result in a distributed query, which emits debug messages
BEGIN; BEGIN;
SET LOCAL citus.enable_ddl_propagation TO off; SET LOCAL citus.enable_ddl_propagation TO off;
SET LOCAL client_min_messages TO DEBUG2; SET LOCAL client_min_messages TO DEBUG1;
ALTER TABLE referencing_table ADD CONSTRAINT test_constraint FOREIGN KEY (ref_id) REFERENCES referenced_table (id); ALTER TABLE referencing_table ADD CONSTRAINT test_constraint FOREIGN KEY (ref_id) REFERENCES referenced_table (id);
ABORT; ABORT;
-- test foreign constraint creation -- test foreign constraint creation

View File

@ -250,7 +250,7 @@ SELECT create_distributed_table('referencing_table', 'ref_id', 'hash');
-- not skipping validation would result in a distributed query, which emits debug messages -- not skipping validation would result in a distributed query, which emits debug messages
BEGIN; BEGIN;
SET LOCAL citus.enable_ddl_propagation TO off; SET LOCAL citus.enable_ddl_propagation TO off;
SET LOCAL client_min_messages TO DEBUG2; SET LOCAL client_min_messages TO DEBUG1;
ALTER TABLE referencing_table ADD CONSTRAINT test_constraint FOREIGN KEY (ref_id) REFERENCES referenced_table (id); ALTER TABLE referencing_table ADD CONSTRAINT test_constraint FOREIGN KEY (ref_id) REFERENCES referenced_table (id);
ABORT; ABORT;