8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d02853 commit 2d8e3d1Copy full SHA for 2d8e3d1
src/backend/tcop/postgres.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.464 2005/10/05 23:46:06 neilc Exp $
+ * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.465 2005/10/13 22:57:27 momjian Exp $
12
13
* NOTES
14
* this is the "main" module of the postgres backend and
@@ -95,7 +95,8 @@ int max_stack_depth = 2048;
95
static int max_stack_depth_bytes = 2048 * 1024;
96
97
/* stack base pointer (initialized by PostgresMain) */
98
-static char *stack_base_ptr = NULL;
+/* Do not make static so PL/Java can modifiy it */
99
+char *stack_base_ptr = NULL;
100
101
102
/*
0 commit comments