Skip to content

Commit a3b65fb

Browse files
committed
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 47bb9db --- 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.
1 parent 5ea2234 commit a3b65fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,9 @@ my @_unused_view_qualifiers = (
484484
{ obj => 'VIEW public.limit_thousand_v_1', qual => 'onek' },
485485
{ obj => 'VIEW public.limit_thousand_v_2', qual => 'onek' },
486486
{ obj => 'VIEW public.limit_thousand_v_3', qual => 'onek' },
487-
{ obj => 'VIEW public.limit_thousand_v_4', qual => 'onek' });
487+
{ obj => 'VIEW public.limit_thousand_v_4', qual => 'onek' },
488+
# Since 14
489+
{ obj => 'MATERIALIZED VIEW public.compressmv', qual => 'cmdata1' });
488490

489491
# Internal subroutine to remove no-longer-used table qualifiers from
490492
# CREATE [MATERIALIZED] VIEW commands. See list of targeted views above.

0 commit comments

Comments
 (0)