mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-07 19:47:50 +08:00
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:
parent
40e1b30f63
commit
203015ebdd
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user