mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Fix erroneous error message for REINDEX SYSTEM.
Missed case in commit fe263d115a
.
Sawada Masahiko
This commit is contained in:
@ -753,8 +753,9 @@ standard_ProcessUtility(Node *parsetree,
|
|||||||
* intended effect!
|
* intended effect!
|
||||||
*/
|
*/
|
||||||
PreventTransactionChain(isTopLevel,
|
PreventTransactionChain(isTopLevel,
|
||||||
(stmt->kind == REINDEX_OBJECT_SCHEMA) ?
|
(stmt->kind == REINDEX_OBJECT_SCHEMA) ? "REINDEX SCHEMA" :
|
||||||
"REINDEX SCHEMA" : "REINDEX DATABASE");
|
(stmt->kind == REINDEX_OBJECT_SYSTEM) ? "REINDEX SYSTEM" :
|
||||||
|
"REINDEX DATABASE");
|
||||||
ReindexObject(stmt->name, stmt->kind);
|
ReindexObject(stmt->name, stmt->kind);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user