File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.257 2010/04/14 23:52:10 tgl Exp $
11
+ * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.258 2010/05/31 20:02:30 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -3033,7 +3033,8 @@ exec_stmt_dynexecute(PLpgSQL_execstate *estate,
3033
3033
if (* ptr == 'S' || * ptr == 's' )
3034
3034
ereport (ERROR ,
3035
3035
(errcode (ERRCODE_FEATURE_NOT_SUPPORTED ),
3036
- errmsg ("EXECUTE of SELECT ... INTO is not implemented" )));
3036
+ errmsg ("EXECUTE of SELECT ... INTO is not implemented" ),
3037
+ errhint ("You might want to use EXECUTE ... INTO instead." )));
3037
3038
break ;
3038
3039
}
3039
3040
You can’t perform that action at this time.
0 commit comments