Fixes a regression that broke some updating join queries that were not being properly optimized to equijoins, leading to runtime errors like
should be able to sort: InvalidArgumentError("Sort requires at least one column") panic.file="crates/arroyo-rpc/src/df.rs" panic.line=327 panic.column=68
The primary fix is to re-enable an optimization that was disabled in #623. I have also added test cases for this class of query, and tightened up the planner checks to fail updating queries that do not include an equijoin condition (and thus could produce this runtime error).
Fixes a regression that broke some updating join queries that were not being properly optimized to equijoins, leading to runtime errors like
The primary fix is to re-enable an optimization that was disabled in #623. I have also added test cases for this class of query, and tightened up the planner checks to fail updating queries that do not include an equijoin condition (and thus could produce this runtime error).