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
Currently, PostgreSQL data provider implements the standard way of sql data providers. But PostgreSQL works in a different way and some e2e tests are failing.
For instance, limit clause returns unpredictable row subsets of query. So our provider needs to deal with that scenario.
To see the error execute (tpch)
select c_custkey, c_nationkey, c_acctbal
from customer where c_custkey <150and c_nationkey =5or c_custkey =200or c_nationkey >=10or c_acctbal <=500order by c_custkey limit75""")
Currently, PostgreSQL data provider implements the standard way of sql data providers. But PostgreSQL works in a different way and some e2e tests are failing.
For instance, limit clause returns unpredictable row subsets of query. So our provider needs to deal with that scenario.
To see the error execute (tpch)
The output is
The error is in the duplicated rows
The text was updated successfully, but these errors were encountered: