]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix typo in stats_import.sql
authorMichael Paquier <michael@paquier.xyz>
Sun, 8 Mar 2026 22:15:26 +0000 (07:15 +0900)
committerMichael Paquier <michael@paquier.xyz>
Sun, 8 Mar 2026 22:15:26 +0000 (07:15 +0900)
The test mentioned pg_stat_ext_exprs, but the correct catalog name is
pg_stats_ext_exprs.

Thinko in ba97bf9cb7b4.

Discussion: https://postgr.es/m/CADkLM=eEhxJpSUP+eC=eMGZZsVOpnfKDvVkuCbsFg9CajYwDsA@mail.gmail.com

src/test/regress/expected/stats_import.out
src/test/regress/sql/stats_import.sql

index 1f24e306f5b60256151931f47fc5c7c9d36c3269..00a46353041c14b0827aefbb0ebb6a51e9185372 100644 (file)
@@ -3421,7 +3421,7 @@ SELECT o.inherited,
 (0 rows)
 
 -- range_length_histogram, range_empty_frac, and range_bounds_histogram
--- have been added to pg_stat_ext_exprs in PostgreSQL 19.  When dumping
+-- have been added to pg_stats_ext_exprs in PostgreSQL 19.  When dumping
 -- expression statistics in a cluster with an older version, these fields
 -- are dumped as NULL, pg_restore_extended_stats() authorizing the partial
 -- restore state of the extended statistics data.  This test emulates such
index 61535a971dc1d49e9d7666ead134c5826e613046..57363ab374843f1bf7396d07a251806ff586c72d 100644 (file)
@@ -2394,7 +2394,7 @@ SELECT o.inherited,
     o.statistics_name = 'test_mr_stat';
 
 -- range_length_histogram, range_empty_frac, and range_bounds_histogram
--- have been added to pg_stat_ext_exprs in PostgreSQL 19.  When dumping
+-- have been added to pg_stats_ext_exprs in PostgreSQL 19.  When dumping
 -- expression statistics in a cluster with an older version, these fields
 -- are dumped as NULL, pg_restore_extended_stats() authorizing the partial
 -- restore state of the extended statistics data.  This test emulates such