projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77c98f5
)
Make stack_base_ptr non-static, for PL/Java.
author
Bruce Momjian
<bruce@momjian.us>
Thu, 13 Oct 2005 22:57:27 +0000
(22:57 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Thu, 13 Oct 2005 22:57:27 +0000
(22:57 +0000)
src/backend/tcop/postgres.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/tcop/postgres.c
b/src/backend/tcop/postgres.c
index 019cc0190494c48df250bfc26f9e7a6ec0f6c407..37c5f4241d5578afb5bc49ea14e447deb154fe0e 100644
(file)
--- a/
src/backend/tcop/postgres.c
+++ b/
src/backend/tcop/postgres.c
@@
-95,7
+95,8
@@
int max_stack_depth = 2048;
static int max_stack_depth_bytes = 2048 * 1024;
/* stack base pointer (initialized by PostgresMain) */
-static char *stack_base_ptr = NULL;
+/* Do not make static so PL/Java can modifiy it */
+char *stack_base_ptr = NULL;
/*