mirror of
https://github.com/postgres/postgres.git
synced 2025-12-18 05:01:01 +03:00
Added empty TOASTER files and corrected some minor glitches
in regression tests. Jan
This commit is contained in:
@@ -3,7 +3,8 @@ FROM pg_proc as p1
|
||||
WHERE (p1.prolang = 0 OR p1.prorettype = 0 OR
|
||||
p1.pronargs < 0 OR p1.pronargs > 9)
|
||||
AND p1.proname !~ '^pl[^_]+_call_handler$'
|
||||
AND p1.proname !~ '^RI_FKey_';
|
||||
AND p1.proname !~ '^RI_FKey_'
|
||||
AND p1.proname != 'update_pg_pwd';
|
||||
oid|proname
|
||||
---+-------
|
||||
(0 rows)
|
||||
|
||||
@@ -128,11 +128,11 @@ a| b
|
||||
2|13
|
||||
(3 rows)
|
||||
|
||||
QUERY: delete from rtest_v1 where b = 12;
|
||||
QUERY: select * from rtest_v1;
|
||||
** Remember the delete rule on rtest_v1: It says
|
||||
** DO INSTEAD DELETE FROM rtest_t1 WHERE a = old.a
|
||||
** So this time both rows with a = 2 must get deleted
|
||||
QUERY: delete from rtest_v1 where b = 12;
|
||||
QUERY: select * from rtest_v1;
|
||||
a| b
|
||||
-+--
|
||||
1|11
|
||||
|
||||
@@ -28,7 +28,8 @@ FROM pg_proc as p1
|
||||
WHERE (p1.prolang = 0 OR p1.prorettype = 0 OR
|
||||
p1.pronargs < 0 OR p1.pronargs > 9)
|
||||
AND p1.proname !~ '^pl[^_]+_call_handler$'
|
||||
AND p1.proname !~ '^RI_FKey_';
|
||||
AND p1.proname !~ '^RI_FKey_'
|
||||
AND p1.proname != 'update_pg_pwd';
|
||||
|
||||
-- Look for conflicting proc definitions (same names and input datatypes).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user