1
0
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:
Jan Wieck
1999-12-21 00:06:44 +00:00
parent 2c29c96ed6
commit e2aef49694
11 changed files with 187 additions and 14 deletions

View File

@@ -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)

View File

@@ -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

View File

@@ -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).