aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2006-11-21 16:59:02 +0000
committerAndrew Dunstan <andrew@dunslane.net>2006-11-21 16:59:02 +0000
commitf87fcd43c671a4d78528df925e9e326bce42f869 (patch)
tree5de6a566a99db75a7965ad38b952a9bfdeec26ca
parentbcd713a6189188927dec7abda6cdcd6719c990d1 (diff)
downloadpostgresql-f87fcd43c671a4d78528df925e9e326bce42f869.tar.gz
postgresql-f87fcd43c671a4d78528df925e9e326bce42f869.zip
remove duplicate declaration, per report from Magnus Hagander.
-rw-r--r--src/pl/plperl/plperl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pl/plperl/plperl.c b/src/pl/plperl/plperl.c
index 0ca7f9b1f64..e0bbe8fbabf 100644
--- a/src/pl/plperl/plperl.c
+++ b/src/pl/plperl/plperl.c
@@ -1,7 +1,7 @@
/**********************************************************************
* plperl.c - perl as a procedural language for PostgreSQL
*
- * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.122 2006/11/13 17:13:57 adunstan Exp $
+ * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.123 2006/11/21 16:59:02 adunstan Exp $
*
**********************************************************************/
@@ -119,7 +119,6 @@ static bool plperl_safe_init_done = false;
static PerlInterpreter *plperl_trusted_interp = NULL;
static PerlInterpreter *plperl_untrusted_interp = NULL;
static PerlInterpreter *plperl_held_interp = NULL;
-static bool can_run_two;
static bool trusted_context;
static HTAB *plperl_proc_hash = NULL;
static HTAB *plperl_query_hash = NULL;