summaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-04-25 14:11:59 +0000
committerBruce Momjian <bruce@momjian.us>2006-04-25 14:11:59 +0000
commit59d591e79a4a2b5716ee9f52a1bc522eb629543d (patch)
tree27fe60dba7683af65b2a0b2e9ec15e4a9462f646 /src/interfaces
parent6378fdd971eccc2ad4acd015b8e1baa27e0910a6 (diff)
downloadpostgresql-59d591e79a4a2b5716ee9f52a1bc522eb629543d.tar.gz
Back out RESET CONNECTION until there is more discussion.
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index 13eff2ca1f..1f796558da 100644
--- a/src/interfaces/ecpg/preproc/preproc.y
+++ b/src/interfaces/ecpg/preproc/preproc.y
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.322 2006/04/25 14:09:21 momjian Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.323 2006/04/25 14:11:59 momjian Exp $ */
/* Copyright comment */
%{
@@ -1196,8 +1196,6 @@ VariableResetStmt: RESET var_name
{ $$ = make_str("reset transaction isolation level"); }
| RESET SESSION AUTHORIZATION
{ $$ = make_str("reset session authorization"); }
- | RESET CONNECTION
- { $$ = make_str("reset connection"); }
| RESET ALL
{ $$ = make_str("reset all"); }
;