Skip to content

Commit

Permalink
Fix issue with missing column types in explain
Browse files Browse the repository at this point in the history
  • Loading branch information
rishidwivedi committed Apr 25, 2014
1 parent 6e0345f commit da9385a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -452,7 +452,7 @@ private Void processExchange(ExchangeNode node, int indent)
{
for (PlanFragmentId planFragmentId : node.getSourceFragmentIds()) {
PlanFragment target = fragmentsById.get().get(planFragmentId);
target.getRoot().accept(this, indent);
target.getRoot().accept(new Visitor(target.getSymbols(), fragmentsById), indent);
}
return null;
}
Expand Down

0 comments on commit da9385a

Please sign in to comment.