mirror of https://github.com/citusdata/citus.git
Merge pull request #459 from citusdata/fix_warning_in_logical_optimizer
FIX Complie Time Warning in multi_logical_optimizer.cpull/399/head
commit
49b0c61f8d
|
@ -2907,7 +2907,8 @@ IsPartitionColumnRecursive(Expr *columnExpression, Query *query)
|
|||
List *rangetableList = query->rtable;
|
||||
Index rangeTableEntryIndex = 0;
|
||||
RangeTblEntry *rangeTableEntry = NULL;
|
||||
Expr *strippedColumnExpression = strip_implicit_coercions(columnExpression);
|
||||
Expr *strippedColumnExpression = (Expr *) strip_implicit_coercions(
|
||||
(Node *) columnExpression);
|
||||
|
||||
if (IsA(strippedColumnExpression, Var))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue