1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00
+
+ Wed Jan 27 12:42:22 CET 1999
+
+       - Fixed bug that caused ecpg to lose 'goto' information.
+       - Set ecpg version to 2.4.7
+
+ Fri Jan 29 18:03:52 CET 1999
+
+       - Fixed bug that caused 'enum' to be rejected in pure C code.
+       - Fixed bug that caused function names to be translated to lower case.
+       - Set ecpg version to 2.4.8
+
This commit is contained in:
Marc G. Fournier
1999-01-31 19:56:28 +00:00
parent f7c4ec5085
commit 91fed81c77
5 changed files with 49 additions and 23 deletions

View File

@ -1,9 +1,9 @@
exec sql include sqlca;
exec sql whenever sqlerror do print_and_stop();
exec sql whenever sqlerror do PrintAndStop();
exec sql whenever sqlwarning do warn();
void print_and_stop(void)
void PrintAndStop(void)
{
sqlprint();
exit(-1);