mirror of
https://github.com/postgres/postgres.git
synced 2026-04-27 17:16:43 -04:00
EXECUTE can return NOT FOUND so it should be checked here too.
This commit is contained in:
parent
1d3c2343b8
commit
f8dc95540e
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.339.2.2 2007/11/06 08:32:34 meskes Exp $ */
|
||||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.339.2.3 2008/02/14 14:57:29 meskes Exp $ */
|
||||
|
||||
/* Copyright comment */
|
||||
%{
|
||||
|
|
@ -815,7 +815,7 @@ stmt: AlterDatabaseStmt { output_statement($1, 0, connection); }
|
|||
}
|
||||
| ECPGExecute
|
||||
{
|
||||
output_statement($1, 0, connection);
|
||||
output_statement($1, 1, connection);
|
||||
}
|
||||
| ECPGFree
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue