Fix small oversight in recent patch to add more CREATE-FUNCTION-time

syntax checking to plpgsql: check_sql_expr() wasn't being called by
make_select_stmt(), so that there was no SQL syntax check for SELECT
statements.
This commit is contained in:
Tom Lane 2005-10-13 15:34:19 +00:00
parent 40e1b30f63
commit 203015ebdd
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@
* procedural language
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.81 2005/09/14 13:46:47 tgl Exp $
* $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.82 2005/10/13 15:34:19 tgl Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
@ -1986,6 +1986,8 @@ make_select_stmt(void)
expr->params[nparams] = params[nparams];
plpgsql_dstring_free(&ds);
check_sql_expr(expr->query);
if (have_into)
{
PLpgSQL_stmt_select *select;