diff options
author | Tom Lane | 2017-05-02 22:05:53 +0000 |
---|---|---|
committer | Tom Lane | 2017-05-02 22:06:09 +0000 |
commit | 9209e07605afe0349660447f20d83ef165cdd0ae (patch) | |
tree | 91946fb5f2e298352fce7856234720c4e02a564b | |
parent | 93bbeec6a21b76612d77176a8054b41277135684 (diff) |
Ensure commands in extension scripts see the results of preceding DDL.
Due to a missing CommandCounterIncrement() call, parsing of a non-utility
command in an extension script would not see the effects of the immediately
preceding DDL command, unless that command's execution ends with
CommandCounterIncrement() internally ... which some do but many don't.
Report by Philippe Beaudoin, diagnosis by Julien Rouhaud.
Rather remarkably, this bug has evaded detection since extensions were
invented, so back-patch to all supported branches.
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/backend/commands/extension.c | 3 | ||||
-rw-r--r-- | src/test/modules/test_extensions/test_ext3--1.0.sql | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/backend/commands/extension.c b/src/backend/commands/extension.c index d371a2a3c1..c3718b08c1 100644 --- a/src/backend/commands/extension.c +++ b/src/backend/commands/extension.c @@ -718,6 +718,9 @@ execute_sql_string(const char *sql, const char *filename) List *stmt_list; ListCell *lc2; + /* Be sure parser can see any DDL done so far */ + CommandCounterIncrement(); + stmt_list = pg_analyze_and_rewrite(parsetree, sql, NULL, diff --git a/src/test/modules/test_extensions/test_ext3--1.0.sql b/src/test/modules/test_extensions/test_ext3--1.0.sql index 7dec684dcb..4fcb63d2bc 100644 --- a/src/test/modules/test_extensions/test_ext3--1.0.sql +++ b/src/test/modules/test_extensions/test_ext3--1.0.sql @@ -1,3 +1,9 @@ /* src/test/modules/test_extensions/test_ext3--1.0.sql */ -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION test_ext3" to load this file. \quit + +CREATE TABLE test_ext3_table (col_old INT); + +ALTER TABLE test_ext3_table RENAME col_old TO col_new; + +UPDATE test_ext3_table SET col_new = 0; |