Skip to content

Commit

Permalink
test(flink): mark floating mod not yet implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman committed Sep 13, 2023
1 parent 5588d2d commit 61721ed
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ibis/backends/tests/test_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -1196,6 +1196,11 @@ def test_mod(backend, alltypes, df):
reason="bigquery doesn't support floating modulus",
raises=GoogleBadRequest,
)
@pytest.mark.notyet(
["flink"],
"Cannot apply '%' to arguments of type '<DOUBLE> % <SMALLINT>'. Supported form(s): '<EXACT_NUMERIC> % <EXACT_NUMERIC>",
raises=Py4JError,
)
def test_floating_mod(backend, alltypes, df):
expr = operator.mod(alltypes.double_col, alltypes.smallint_col + 1).name("tmp")

Expand Down

0 comments on commit 61721ed

Please sign in to comment.