Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 01aa88f

Browse files
committed
Fix misc_sanity test to accept SHARED_DEPENDENCY_INITACL entries.
Oversight in 5342874. We missed this up to now because the core regression tests create no such entries (at least up to this test), so the only way to see the failure is to do "make installcheck" in an installation where some other DB has such entries. I happened to do that just now ...
1 parent f1affb6 commit 01aa88f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/regress/expected/misc_sanity.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ SELECT *
2626
FROM pg_shdepend as d1
2727
WHERE refclassid = 0 OR refobjid = 0 OR
2828
classid = 0 OR objid = 0 OR
29-
deptype NOT IN ('a', 'o', 'r', 't');
29+
deptype NOT IN ('a', 'i', 'o', 'r', 't');
3030
dbid | classid | objid | objsubid | refclassid | refobjid | deptype
3131
------+---------+-------+----------+------------+----------+---------
3232
(0 rows)

src/test/regress/sql/misc_sanity.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SELECT *
3030
FROM pg_shdepend as d1
3131
WHERE refclassid = 0 OR refobjid = 0 OR
3232
classid = 0 OR objid = 0 OR
33-
deptype NOT IN ('a', 'o', 'r', 't');
33+
deptype NOT IN ('a', 'i', 'o', 'r', 't');
3434

3535

3636
-- **************** pg_class ****************

0 commit comments

Comments
 (0)