Skip to content

Commit 9dc21da

Browse files
now xfail correct test :/
1 parent 1ff99dd commit 9dc21da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/fast/test_replacement_scan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ def test_cte_with_joins(self, duckdb_cursor):
309309
res = rel.fetchall()
310310
assert res == [(2, 2, 2)]
311311

312+
@pytest.mark.xfail(reason="Bug in DuckDB core (MRE at #19154)")
312313
def test_same_name_cte(self, duckdb_cursor):
313314
query = """
314315
WITH df AS (
@@ -330,7 +331,6 @@ def test_same_name_cte(self, duckdb_cursor):
330331
res = rel.fetchall()
331332
assert res == [(2,), (3,), (4,)]
332333

333-
@pytest.mark.xfail(reason="Bug in DuckDB core (MRE at #19154)")
334334
def test_use_with_view(self, duckdb_cursor):
335335
rel = create_relation(duckdb_cursor, "select * from df")
336336
rel.create_view('v1')

0 commit comments

Comments
 (0)