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
2682a4c0
Commit
2682a4c0
authored
Aug 02, 2006
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
One more file to remove
parent
36e8d4e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
34 deletions
+0
-34
src/interfaces/ecpg/test/header_test.h
src/interfaces/ecpg/test/header_test.h
+0
-34
No files found.
src/interfaces/ecpg/test/header_test.h
deleted
100644 → 0
View file @
36e8d4e7
/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/header_test.h,v 1.12 2006/03/11 04:38:40 momjian Exp $ */
#include "stdlib.h"
static
void
Finish
(
char
*
msg
)
{
fprintf
(
stderr
,
"Error in statement '%s':
\n
"
,
msg
);
sqlprint
();
/* finish transaction */
exec
sql
rollback
;
/* and remove test table */
exec
sql
drop
table
meskes
;
exec
sql
commit
;
exec
sql
disconnect
;
exit
(
-
1
);
}
static
void
warn
(
void
)
{
fprintf
(
stderr
,
"Warning: At least one column was truncated
\n
"
);
}
exec
sql
whenever
sqlerror
do
Finish
(
msg
);
exec
sql
whenever
sqlwarning
do
warn
();
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