diff options
| author | Alvaro Herrera | 2014-02-25 16:43:56 +0000 |
|---|---|---|
| committer | Alvaro Herrera | 2014-02-25 16:44:26 +0000 |
| commit | 8661704385d4114a6a1a2dc6411b9229744648f4 (patch) | |
| tree | e179f41c7d90993e204822183910481ab3396be1 | |
| parent | 71bc8520cf31819295639044d6cd44e9c8058311 (diff) | |
deparse: Take pg_catalog out of search_pathbdr/0.5
| -rw-r--r-- | src/backend/tcop/deparse_utility.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/tcop/deparse_utility.c b/src/backend/tcop/deparse_utility.c index f1d67ea4de..f60d738836 100644 --- a/src/backend/tcop/deparse_utility.c +++ b/src/backend/tcop/deparse_utility.c @@ -2152,6 +2152,8 @@ deparse_utility_command(Oid objectId, Node *parsetree) */ overridePath = GetOverrideSearchPath(CurrentMemoryContext); overridePath->schemas = NIL; + overridePath->addCatalog = false; + overridePath->addTemp = false; PushOverrideSearchPath(overridePath); switch (nodeTag(parsetree)) |
