mirror of
https://github.com/postgres/postgres.git
synced 2026-04-24 15:47:01 -04:00
Add hint suggesting the use of EXECUTE CREATE TABLE ... AS for EXECUTE INTO.
This commit is contained in:
parent
b774efa9d5
commit
2b8364de69
1 changed files with 1 additions and 1 deletions
|
|
@ -3249,7 +3249,7 @@ exec_stmt_dynexecute(PLpgSQL_execstate *estate,
|
|||
ereport(ERROR,
|
||||
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
|
||||
errmsg("EXECUTE of SELECT ... INTO is not implemented"),
|
||||
errhint("You might want to use EXECUTE ... INTO instead.")));
|
||||
errhint("You might want to use EXECUTE ... INTO or EXECUTE CREATE TABLE ... AS instead.")));
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue