Fix erroneous error message for REINDEX SYSTEM.
Missed case in commit fe263d115a7dd16095b8b8f1e943aff2bb4574d2. Sawada Masahiko
This commit is contained in:
parent
9d265ae77a
commit
ac0914285a
@ -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:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user