1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-21 02:52:47 +03:00
I have solved some problems with dynamic loading on NT. It is possible
to
run succesfully both trigger and plpgsql regression tests. The patch is
in
the included file "diff".

                        Dan
This commit is contained in:
Bruce Momjian
1999-03-22 16:45:30 +00:00
parent 9aa535a2b9
commit 48ea8b76db
4 changed files with 9 additions and 9 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.105 1999/03/17 22:53:18 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.106 1999/03/22 16:45:27 momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -142,7 +142,7 @@ jmp_buf Warn_restart;
#define sigsetjmp(x,y) setjmp(x)
#define siglongjmp longjmp
#else
sigjmp_buf Warn_restart;
DLLIMPORT sigjmp_buf Warn_restart;
#endif /* defined(nextstep) */
bool InError;
@@ -1531,7 +1531,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
if (!IsUnderPostmaster)
{
puts("\nPOSTGRES backend interactive interface ");
puts("$Revision: 1.105 $ $Date: 1999/03/17 22:53:18 $\n");
puts("$Revision: 1.106 $ $Date: 1999/03/22 16:45:27 $\n");
}
/* ----------------