Skip to content

Commit

Permalink
feat(flink): year, month, and day unit support when converting from a…
Browse files Browse the repository at this point in the history
…n integer to an interval
  • Loading branch information
cpcloud committed Aug 8, 2024
1 parent 77197d9 commit aba3ee7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ibis/backends/tests/test_temporal.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,13 +643,18 @@ def convert_to_offset(offset, displacement_type=displacement_type):
raises=PsycoPg2InternalError,
reason="Bind error: Invalid unit: week",
),
pytest.mark.notimpl(
["flink"],
raises=Py4JJavaError,
reason="week is not a valid unit in Flink",
),
],
),
"D",
],
)
@pytest.mark.notimpl(
["datafusion", "flink", "sqlite", "druid"], raises=com.OperationNotDefinedError
["datafusion", "sqlite", "druid"], raises=com.OperationNotDefinedError
)
@pytest.mark.notimpl(
["sqlite"],
Expand Down

0 comments on commit aba3ee7

Please sign in to comment.