diff options
| author | Bruce Momjian | 1999-03-22 16:45:30 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-03-22 16:45:30 +0000 |
| commit | 48ea8b76db3b0579580172ce3eb1af73b9a4a64b (patch) | |
| tree | 43912d257c446d6c44a2988897d04a8b2cc23fd0 /src/pl | |
| parent | 9aa535a2b967fc71a1584165d18889dfa4eb48dc (diff) | |
Hi,
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
Diffstat (limited to 'src/pl')
| -rw-r--r-- | src/pl/plpgsql/src/pl_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index fa4935e965b..dd31dcd5f81 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -3,7 +3,7 @@ * procedural language * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.7 1999/02/03 21:17:58 momjian Exp $ + * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.8 1999/03/22 16:45:30 momjian Exp $ * * This software is copyrighted by Jan Wieck - Hamburg. * @@ -75,7 +75,7 @@ #define siglongjmp longjmp #endif -extern sigjmp_buf Warn_restart; /* in tcop/postgres.c */ +extern DLLIMPORT sigjmp_buf Warn_restart; /* in tcop/postgres.c */ static PLpgSQL_function *error_info_func = NULL; static PLpgSQL_stmt *error_info_stmt = NULL; |
