diff options
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 5025ab8f56c..aa0da207a3a 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.456 2005/08/08 03:12:12 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.457 2005/08/11 21:11:45 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -162,7 +162,6 @@ static List *pg_rewrite_queries(List *querytree_list); static void start_xact_command(void); static void finish_xact_command(void); static void SigHupHandler(SIGNAL_ARGS); -static void FloatExceptionHandler(SIGNAL_ARGS); static void log_disconnections(int code, Datum arg); @@ -2151,7 +2150,7 @@ StatementCancelHandler(SIGNAL_ARGS) } /* signal handler for floating point exception */ -static void +void FloatExceptionHandler(SIGNAL_ARGS) { ereport(ERROR, |