mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-23 22:29:58 +00:00
Previously we attempted to download all extensions in CREATE EXTENSION statements. Extensions like pg_stat_statements and neon are not remote extensions, but still we were requesting them when skip_pg_catalog_updates was set to false. Fixes: https://github.com/neondatabase/neon/issues/11127 Signed-off-by: Tristan Partin <tristan@neon.tech>
25 lines
828 B
Diff
25 lines
828 B
Diff
diff --git a/expected/ut-A.out b/expected/ut-A.out
|
|
index da723b8..5328114 100644
|
|
--- a/expected/ut-A.out
|
|
+++ b/expected/ut-A.out
|
|
@@ -3175,6 +3178,7 @@ SELECT s.query, s.calls
|
|
FROM public.pg_stat_statements s
|
|
JOIN pg_catalog.pg_database d
|
|
ON (s.dbid = d.oid)
|
|
+ WHERE s.query LIKE 'SELECT * FROM s1.t1%' OR s.query LIKE '%pg_stat_statements_reset%'
|
|
ORDER BY 1;
|
|
query | calls
|
|
--------------------------------------+-------
|
|
diff --git a/sql/ut-A.sql b/sql/ut-A.sql
|
|
index 7c7d58a..4fd1a07 100644
|
|
--- a/sql/ut-A.sql
|
|
+++ b/sql/ut-A.sql
|
|
@@ -963,6 +963,7 @@ SELECT s.query, s.calls
|
|
FROM public.pg_stat_statements s
|
|
JOIN pg_catalog.pg_database d
|
|
ON (s.dbid = d.oid)
|
|
+ WHERE s.query LIKE 'SELECT * FROM s1.t1%' OR s.query LIKE '%pg_stat_statements_reset%'
|
|
ORDER BY 1;
|
|
|
|
----
|