diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-03-15 20:18:35 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-03-15 20:18:35 -0400 |
commit | 2b8364de698b0b425e5d8631a63c91387ee098ef (patch) | |
tree | 9824bbc2a2efd70cc3e38b76c2b3f466c089d09e /src | |
parent | b774efa9d57a02fbd64dafbe55a059253fbfda4e (diff) | |
download | postgresql-2b8364de698b0b425e5d8631a63c91387ee098ef.tar.gz postgresql-2b8364de698b0b425e5d8631a63c91387ee098ef.zip |
Add hint suggesting the use of EXECUTE CREATE TABLE ... AS for EXECUTE INTO.
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plpgsql/src/pl_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index 689686b7825..88cb8eb1045 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -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; } |