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

@ -37,7 +37,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: catversion.h,v 1.164 2002/11/08 17:27:03 momjian Exp $
* $Id: catversion.h,v 1.165 2002/11/23 18:13:22 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -53,6 +53,6 @@
*/
/* yyyymmddN */
#define CATALOG_VERSION_NO 200211081
#define CATALOG_VERSION_NO 200211231
#endif

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;