From 59d591e79a4a2b5716ee9f52a1bc522eb629543d Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 25 Apr 2006 14:11:59 +0000 Subject: Back out RESET CONNECTION until there is more discussion. --- src/interfaces/ecpg/preproc/preproc.y | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/interfaces') 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"); } ; -- cgit v1.2.1