-
Notifications
You must be signed in to change notification settings - Fork 122
Open
Labels
bugSomething isn't workingSomething isn't workingplannerRelated to the query plannerRelated to the query planner
Description
Steps to reproduce:
create table products(
id integer,
name string,
price double,
category string,
stock integer,
primary key(id)
)
create index idx_filtered_multi as select category, price, stock from products where price > 15 and stock > 60 order by category,
select category, price, stock from products where price > 15 and stock > 60 order by category, priceI believe the match candidate is created incorrectly such that price is created twice, once as a Placeholder, and another time as PredicateWithValueAndRanges.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingplannerRelated to the query plannerRelated to the query planner