You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Push down simple comparison operators like > , >=, <, <=, !=, == etc. to docDB.
Today, for queries like select * from table where col > value, do a full scan of the table, retrieve all rows and then do the filtering in PG layer.
We should instead push down the comparison operator to docDB and have docDB do the filtering.
The text was updated successfully, but these errors were encountered:
Push down simple comparison operators like > , >=, <, <=, !=, == etc. to docDB.
Today, for queries like
select * from table where col > value
, do a full scan of the table, retrieve all rows and then do the filtering in PG layer.We should instead push down the comparison operator to docDB and have docDB do the filtering.
The text was updated successfully, but these errors were encountered: