mirror of https://github.com/citusdata/citus.git
minor fix on function declarations
parent
101bb8f554
commit
6366eebee6
|
@ -158,6 +158,7 @@ static Query * LateralQuery(Query *query);
|
|||
static bool SupportedLateralQuery(Query *parentQuery, Query *lateralQuery);
|
||||
static bool JoinOnPartitionColumn(Query *query);
|
||||
static void ErrorIfUnsupportedShardDistribution(Query *query);
|
||||
static List * RelationIdList(Query *query);
|
||||
static bool CoPartitionedTables(Oid firstRelationId, Oid secondRelationId);
|
||||
static bool ShardIntervalsEqual(FmgrInfo *comparisonFunction,
|
||||
ShardInterval *firstInterval,
|
||||
|
@ -3861,7 +3862,7 @@ ErrorIfUnsupportedShardDistribution(Query *query)
|
|||
/*
|
||||
* RelationIdList returns list of unique relation ids in query tree.
|
||||
*/
|
||||
List *
|
||||
static List *
|
||||
RelationIdList(Query *query)
|
||||
{
|
||||
List *rangeTableList = NIL;
|
||||
|
|
|
@ -123,7 +123,6 @@ extern bool LeafQuery(Query *queryTree);
|
|||
extern List * PartitionColumnOpExpressionList(Query *query);
|
||||
extern List * ReplaceColumnsInOpExpressionList(List *opExpressionList, Var *newColumn);
|
||||
extern bool IsPartitionColumnRecursive(Expr *columnExpression, Query *query);
|
||||
extern List * RelationIdList(Query *query);
|
||||
|
||||
|
||||
#endif /* MULTI_LOGICAL_OPTIMIZER_H */
|
||||
|
|
Loading…
Reference in New Issue