diff options
author | Tom Lane | 2023-01-18 21:51:40 +0000 |
---|---|---|
committer | Tom Lane | 2023-01-18 21:51:40 +0000 |
commit | a3b65fb28238fe7f4a1ae9685d39ff0c11bdb9d3 (patch) | |
tree | 05fbc73e5c2b559bfe4b3952479243936e70a04e | |
parent | 5ea2234670e58000c7ffde38df3bea91972bc2df (diff) |
Fix AdjustUpgrade.pm's view conversion list for --with-lz4.
Turns out the compression.sql test creates a view that needs
to be adjusted in the wake of 47bb9db75 --- except that without
--with-lz4, it fails to create the view at all, so I'd not
noticed this in testing.
Per buildfarm member crake.
-rw-r--r-- | src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm b/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm index 5bed1d6839..349bebeaea 100644 --- a/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm +++ b/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm @@ -484,7 +484,9 @@ my @_unused_view_qualifiers = ( { obj => 'VIEW public.limit_thousand_v_1', qual => 'onek' }, { obj => 'VIEW public.limit_thousand_v_2', qual => 'onek' }, { obj => 'VIEW public.limit_thousand_v_3', qual => 'onek' }, - { obj => 'VIEW public.limit_thousand_v_4', qual => 'onek' }); + { obj => 'VIEW public.limit_thousand_v_4', qual => 'onek' }, + # Since 14 + { obj => 'MATERIALIZED VIEW public.compressmv', qual => 'cmdata1' }); # Internal subroutine to remove no-longer-used table qualifiers from # CREATE [MATERIALIZED] VIEW commands. See list of targeted views above. |