File tree 1 file changed +2
-2
lines changed
src/test/modules/test_extensions/t
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 64
64
# Ensure that extensions installed on $system is still visible when using with
65
65
# custom extension control path.
66
66
my $ret3 = $node -> safe_psql(' postgres' ,
67
- " select count(*) > 0 as ok from pg_available_extensions where name = 'amcheck '"
67
+ " select count(*) > 0 as ok from pg_available_extensions where name = 'plpgsql '"
68
68
);
69
69
is($ret3 , " t" ,
70
70
" \$ system extension is installed correctly on pg_available_extensions" );
71
71
72
72
73
73
my $ret4 = $node -> safe_psql(' postgres' ,
74
- " set extension_control_path = ''; select count(*) > 0 as ok from pg_available_extensions where name = 'amcheck '"
74
+ " set extension_control_path = ''; select count(*) > 0 as ok from pg_available_extensions where name = 'plpgsql '"
75
75
);
76
76
is($ret4 , " t" ,
77
77
" \$ system extension is installed correctly on pg_available_extensions with empty extension_control_path"
You can’t perform that action at this time.
0 commit comments