Skip to content

Commit

Permalink
Fix minor code style issue in pg_stat_statements test
Browse files Browse the repository at this point in the history
  • Loading branch information
whitehawk committed Jan 24, 2024
1 parent 83fe977 commit c3bd1fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CREATE TABLE t(a int, b text) DISTRIBUTED BY (a);
-- Known issue: query is not added to pg_stat_statements statistics in
-- case it is planned by GPORCA. So disable GPORCA during tests.
SET optimizer='off';
SET optimizer=off;
SELECT pg_stat_statements_reset();
pg_stat_statements_reset
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion contrib/pg_stat_statements/sql/test_pg_stat_statements.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CREATE TABLE t(a int, b text) DISTRIBUTED BY (a);

-- Known issue: query is not added to pg_stat_statements statistics in
-- case it is planned by GPORCA. So disable GPORCA during tests.
SET optimizer='off';
SET optimizer=off;

SELECT pg_stat_statements_reset();

Expand Down

0 comments on commit c3bd1fb

Please sign in to comment.