Re: PlanLater not being optimized out of Query Plan

2017-06-29 Thread Russell Spitzer
Figured it out, it was in my Exec, I hadn't defined it as a case class (Just a normal class) and just left in stubs for the Product trait methods. This just led to some... unwanted behaviors. On Thu, Jun 29, 2017 at 4:26 PM Russell Spitzer wrote: > I've been writing some toy experimental strateg

PlanLater not being optimized out of Query Plan

2017-06-29 Thread Russell Spitzer
I've been writing some toy experimental strategies which end up adding UnaryExec nodes to the plan. For some reason though my "PlanLater" nodes end up being ignored and end up in the final physical plan. Is there anything in general that I might be missing? I'm doing my sample work on 2.1.X and ad