Skip to content

Commit

Permalink
test(risingwave): mark test_union_aliasing as notimpl because arbit…
Browse files Browse the repository at this point in the history
…rary aggregate function is not supported (#9731)
  • Loading branch information
cpcloud authored Jul 31, 2024
1 parent acd7d82 commit 327c194
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ibis/backends/tests/test_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,13 @@ def test_isin_bug(con, snapshot):
raises=NotImplementedError,
)
@pytest.mark.notyet(
["datafusion", "exasol", "oracle", "flink", "risingwave"],
["datafusion", "exasol", "oracle", "flink"],
reason="no unnest support",
raises=exc.OperationNotDefinedError,
)
@pytest.mark.notyet(
["risingwave"], reason="no arbitrary support", raises=exc.OperationNotDefinedError
)
@pytest.mark.notyet(
["sqlite", "mysql", "druid", "impala", "mssql"], reason="no unnest support upstream"
)
Expand Down

0 comments on commit 327c194

Please sign in to comment.