PG-178: Test cases fixes.

This commit is contained in:
Ibrar Ahmed
2021-02-15 13:08:08 +00:00
parent d3278c0e4c
commit a222adc587
7 changed files with 193 additions and 66 deletions

View File

@@ -4,11 +4,12 @@ CREATE TABLE foo1(a int);
CREATE TABLE foo2(a int);
CREATE TABLE foo3(a int);
CREATE TABLE foo4(a int);
SELECT pg_stat_monitor_reset();
SELECT * FROM foo1, foo2, foo3, foo4;
SELECT query, relations from pg_stat_monitor ORDER BY query;
SELECT pg_stat_monitor_reset();
DROP TABLE foo1;
DROP TABLE foo2;
DROP TABLE foo3;
DROP TABLE foo4;
SELECT pg_stat_monitor_reset();
DROP EXTENSION pg_stat_monitor;