提交 203015eb 编写于 作者: T Tom Lane

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.
上级 40e1b30f
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册