PG-554: Remove redundant files and fix regression. (#319)

PG-554: Remove reduntant files and fix regression.

Removed old files with same name and add these files to fix sql regression
on PG 14 & 15.

1- regression/expected/error_1.out
2- regression/expected/error_insert_1.out
3- regression/expected/top_query_1.out
This commit is contained in:
Naeem Akhter
2022-11-23 02:20:43 +05:00
committed by GitHub
parent 2f2c40ed22
commit fe83f56ab7
3 changed files with 24 additions and 8 deletions

View File

@@ -27,11 +27,15 @@ SELECT query, elevel, sqlcode, message FROM pg_stat_monitor ORDER BY query COLLA
SELECT * FROM unknown; | 21 | 42P01 | relation "unknown" does not exist
SELECT 1/0; | 21 | 22012 | division by zero
SELECT pg_stat_monitor_reset() | 0 | |
do $$ +| 0 | |
BEGIN +| | |
RAISE WARNING 'warning message';+| | |
END $$ | | |
do $$ +| 19 | 01000 | warning message
BEGIN +| | |
RAISE WARNING 'warning message';+| | |
END $$; | | |
(5 rows)
(6 rows)
SELECT pg_stat_monitor_reset();
pg_stat_monitor_reset