Skip to content

Commit

Permalink
feat(date): add ibis.date(y,m,d) functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
Saul Pwanson committed Feb 8, 2022
1 parent e169c74 commit f2fc2c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ibis/backends/sqlite/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,11 @@ def _string_concat(t, expr):
ops.Substring: _substr,
ops.StrRight: _string_right,
ops.StringFind: _string_find,
ops.StringConcat: _string_concat,
ops.Least: varargs(sa.func.min),
ops.Greatest: varargs(sa.func.max),
ops.IfNull: fixed_arity(sa.func.ifnull, 2),
ops.DateFromYMD: _date_from_ymd,
ops.DateTruncate: _truncate(sa.func.date),
ops.TimestampTruncate: _truncate(sa.func.datetime),
ops.Strftime: _strftime,
Expand Down

0 comments on commit f2fc2c9

Please sign in to comment.