PG-581: top_queryid expected output verification and change.

This commit is contained in:
Naeem Akhter
2023-01-17 19:13:37 +05:00
committed by Muhammad Usama
parent caeb5f5e73
commit f9ef1455ae
2 changed files with 6 additions and 6 deletions

View File

@@ -24,9 +24,9 @@ SELECT add2(1,2);
(1 row)
SELECT query, top_query FROM pg_stat_monitor ORDER BY query COLLATE "C";
query | top_query
--------------------------------------------------------------+------------------
(select $1 + $2) | SELECT add2(1,2)
query | top_query
--------------------------------------------------------------+-------------------
(select $1 + $2) | SELECT add2(1,2);
CREATE OR REPLACE FUNCTION add(int, int) RETURNS INTEGER AS +|
$$ +|
BEGIN +|