Skip to content

Commit

Permalink
feat(exasol): add support for TimestampNow (#8563)
Browse files Browse the repository at this point in the history
## Description of changes
Add implementation for TimestampNow to Exasol backend
  • Loading branch information
Nicoretti authored Mar 6, 2024
1 parent 8d7baae commit 94e79e4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion ibis/backends/exasol/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ class ExasolCompiler(SQLGlotCompiler):
ops.TimestampBucket,
ops.TimestampDelta,
ops.TimestampDiff,
ops.TimestampNow,
ops.TimestampSub,
ops.TimestampTruncate,
ops.TypeOf,
Expand Down
2 changes: 0 additions & 2 deletions ibis/backends/tests/test_temporal.py
Original file line number Diff line number Diff line change
Expand Up @@ -1594,7 +1594,6 @@ def test_day_of_week_column_group_by(
@pytest.mark.notimpl(
["datafusion", "druid", "oracle"], raises=com.OperationNotDefinedError
)
@pytest.mark.notimpl(["exasol"], raises=com.OperationNotDefinedError)
def test_now(con):
expr = ibis.now()
result = con.execute(expr.name("tmp"))
Expand All @@ -1605,7 +1604,6 @@ def test_now(con):
@pytest.mark.notimpl(
["datafusion", "druid", "oracle"], raises=com.OperationNotDefinedError
)
@pytest.mark.notimpl(["exasol"], raises=com.OperationNotDefinedError)
def test_now_from_projection(alltypes):
n = 2
expr = alltypes.select(now=ibis.now()).limit(n)
Expand Down

0 comments on commit 94e79e4

Please sign in to comment.