Skip to content

Commit e6ee098

Browse files
Andrew ArdillNickCrews
authored andcommitted
test(sql): add xfails for backends when cross-database load fails with overwrite
1 parent 8f2b699 commit e6ee098

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

ibis/backends/tests/test_client.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1855,7 +1855,21 @@ def test_table_not_found(con):
18551855
con.table(gen_name("table_not_found"))
18561856

18571857

1858-
@pytest.mark.parametrize("overwrite", [True, False])
1858+
@pytest.mark.parametrize(
1859+
"overwrite",
1860+
[
1861+
param(
1862+
True,
1863+
marks=[
1864+
pytest.mark.notimpl(
1865+
["mysql", "singlestoredb", "risingwave"],
1866+
reason="Cross-database load fails with overwrite (needs investigation).",
1867+
)
1868+
],
1869+
),
1870+
False,
1871+
],
1872+
)
18591873
@pytest.mark.notimpl(
18601874
["flink"], raises=com.IbisError, reason="not yet implemented for Flink"
18611875
)

0 commit comments

Comments
 (0)