mirror of https://github.com/citusdata/citus.git
commands/index.c: Fix assertion typo
parent
f0a79800d2
commit
7bf7e41594
|
@ -190,8 +190,8 @@ ErrorIfReindexOnDistributedTable(ReindexStmt *ReindexStatement)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Assert(ReindexStatement->relkind == REINDEX_OBJECT_INDEX ||
|
Assert(ReindexStatement->kind == REINDEX_OBJECT_INDEX ||
|
||||||
ReindexStatement->relkind == REINDEX_OBJECT_TABLE);
|
ReindexStatement->kind == REINDEX_OBJECT_TABLE);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* XXX: Consider using RangeVarGetRelidExtended with a permission
|
* XXX: Consider using RangeVarGetRelidExtended with a permission
|
||||||
|
|
Loading…
Reference in New Issue