Skip to content

Commit

Permalink
Possibly an issue with main duckdb
Browse files Browse the repository at this point in the history
  • Loading branch information
pdet committed May 15, 2024
1 parent ed35a98 commit 3240228
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/python/test_set_operation_relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_union(self, connection):
select * from tbl2
) order by all
"""
expected = connection.sql(query).fetchall()
expected = connection.execute(query).fetchall()
json = connection.get_substrait_json(query).fetchall()[0][0]
rel = connection.from_substrait_json(json)
actual = rel.fetchall()
Expand All @@ -49,7 +49,7 @@ def test_except(self, connection):
query = """
select * from tbl1 EXCEPT (select * from tbl2);
"""
expected = connection.sql(query).fetchall()
expected = connection.execute(query).fetchall()
json = connection.get_substrait_json(query).fetchall()[0][0]
rel = connection.from_substrait_json(json)
actual = rel.fetchall()
Expand All @@ -71,7 +71,7 @@ def test_intersect(self, connection):
query = """
select * from tbl1 INTERSECT (select * from tbl2);
"""
expected = connection.sql(query).fetchall()
expected = connection.execute(query).fetchall()
json = connection.get_substrait_json(query).fetchall()[0][0]
rel = connection.from_substrait_json(json)
actual = rel.fetchall()
Expand Down

0 comments on commit 3240228

Please sign in to comment.