Merge branch 'master' into ref-table-crash

pull/1497/head
Brian Cloutier 2017-07-20 15:56:30 +03:00 committed by GitHub
commit e4510c4733
2 changed files with 2 additions and 1 deletions

View File

@ -166,6 +166,7 @@ RelayEventExtendNames(Node *parseTree, char *schemaName, uint64 shardId)
*/
}
/* fallthrough */
case T_CreateStmt:
{
CreateStmt *createStmt = (CreateStmt *) parseTree;

View File

@ -4448,9 +4448,9 @@ isSimpleNode(Node *node, Node *parentNode, int prettyFlags)
return false;
}
/* else do the same stuff as for T_SubLink et al. */
/* FALL THROUGH */
}
/* fallthrough */
case T_SubLink:
case T_NullTest:
case T_BooleanTest: