1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-15 02:22:24 +03:00

Update regression for new patches. Bump up catversion.

This commit is contained in:
Bruce Momjian
2002-11-23 18:13:22 +00:00
parent f9e23827b0
commit 17d938320d
3 changed files with 4 additions and 4 deletions

View File

@@ -299,7 +299,7 @@ NOTICE: trigger_func() called: action = UPDATE, when = AFTER, level = STATEMENT
COPY main_table (a, b) FROM stdin;
NOTICE: trigger_func() called: action = INSERT, when = BEFORE, level = STATEMENT
NOTICE: trigger_func() called: action = INSERT, when = AFTER, level = STATEMENT
SELECT * FROM main_table ORDER BY a;
SELECT * FROM main_table ORDER BY a, b;
a | b
----+----
6 | 10

View File

@@ -247,4 +247,4 @@ COPY main_table (a, b) FROM stdin;
50 60
\.
SELECT * FROM main_table ORDER BY a;
SELECT * FROM main_table ORDER BY a, b;