mirror of https://github.com/citusdata/citus.git
Merge pull request #4894 from citusdata/add-comment-to-postprocess-create-table
Update func comment for PostprocessCreateTableStmtpull/4872/head^2
commit
a1a394dbc9
|
@ -178,6 +178,10 @@ PreprocessDropTableStmt(Node *node, const char *queryString,
|
||||||
*
|
*
|
||||||
* This function also processes CREATE TABLE ... PARTITION OF statements via
|
* This function also processes CREATE TABLE ... PARTITION OF statements via
|
||||||
* PostprocessCreateTableStmtPartitionOf function.
|
* PostprocessCreateTableStmtPartitionOf function.
|
||||||
|
*
|
||||||
|
* Also CREATE TABLE ... INHERITS ... commands are filtered here. If the inherited
|
||||||
|
* table is a distributed table, this function errors out, as we currently don't
|
||||||
|
* support local tables inheriting a distributed table.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
PostprocessCreateTableStmt(CreateStmt *createStatement, const char *queryString)
|
PostprocessCreateTableStmt(CreateStmt *createStatement, const char *queryString)
|
||||||
|
|
Loading…
Reference in New Issue