Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
17d93832
Commit
17d93832
authored
Nov 23, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update regression for new patches. Bump up catversion.
parent
f9e23827
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
src/include/catalog/catversion.h
src/include/catalog/catversion.h
+2
-2
src/test/regress/expected/triggers.out
src/test/regress/expected/triggers.out
+1
-1
src/test/regress/sql/triggers.sql
src/test/regress/sql/triggers.sql
+1
-1
No files found.
src/include/catalog/catversion.h
View file @
17d93832
...
...
@@ -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.16
4 2002/11/08 17:27:03
momjian Exp $
* $Id: catversion.h,v 1.16
5 2002/11/23 18:13:22
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -53,6 +53,6 @@
*/
/* yyyymmddN */
#define CATALOG_VERSION_NO 200211
08
1
#define CATALOG_VERSION_NO 200211
23
1
#endif
src/test/regress/expected/triggers.out
View file @
17d93832
...
...
@@ -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
...
...
src/test/regress/sql/triggers.sql
View file @
17d93832
...
...
@@ -247,4 +247,4 @@ COPY main_table (a, b) FROM stdin;
50
60
\
.
SELECT
*
FROM
main_table
ORDER
BY
a
;
\ No newline at end of file
SELECT
*
FROM
main_table
ORDER
BY
a
,
b
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment