summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2011-12-18 15:34:33 +0100
committerMichael Meskes <meskes@postgresql.org>2011-12-18 18:45:39 +0100
commitbb4cfebd64cb43b9002e6a748dd8d2a2eed8204b (patch)
treee30ca3e77e2adcdc46a3dc85e8910594330a4d69
parentd0ea1db52a3497d63d400b599980ffb237303cd5 (diff)
In ecpg removed old leftover check for given connection name.
Ever since we introduced real prepared statements this should work for different connections. The old solution just emulating prepared statements, though, wasn't able to handle this. Closes: #6309
-rw-r--r--src/interfaces/ecpg/preproc/ecpg.addons5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/interfaces/ecpg/preproc/ecpg.addons b/src/interfaces/ecpg/preproc/ecpg.addons
index f6f9ff4313d..9f016861156 100644
--- a/src/interfaces/ecpg/preproc/ecpg.addons
+++ b/src/interfaces/ecpg/preproc/ecpg.addons
@@ -19,9 +19,6 @@ ECPG: stmtClosePortalStmt block
}
ECPG: stmtDeallocateStmt block
{
- if (connection)
- mmerror(PARSE_ERROR, ET_ERROR, "AT option not allowed in DEALLOCATE statement");
-
output_deallocate_prepare_statement($1);
}
ECPG: stmtDeclareCursorStmt block
@@ -72,8 +69,6 @@ ECPG: stmtViewStmt rule
}
| ECPGDeallocateDescr
{
- if (connection)
- mmerror(PARSE_ERROR, ET_ERROR, "AT option not allowed in DEALLOCATE statement");
fprintf(yyout,"ECPGdeallocate_desc(__LINE__, %s);",$1);
whenever_action(0);
free($1);