Skip to content

Commit

Permalink
add todo
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslandoga committed Nov 1, 2024
1 parent 12f967d commit f6c10f7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/ecto/adapters/clickhouse/connection.ex
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ defmodule Ecto.Adapters.ClickHouse.Connection do
ilike: " ILIKE ",
# TODO like()
like: " LIKE ",
# TODO in()
in: " IN "
]

Expand Down Expand Up @@ -697,6 +698,8 @@ defmodule Ecto.Adapters.ClickHouse.Connection do
{:ilike, _, [l, r]} ->
["notILike(", expr(l, sources, params, query), ", ", expr(r, sources, params, query), ?)]

# TODO notIn()

Check failure on line 701 in lib/ecto/adapters/clickhouse/connection.ex

View workflow job for this annotation

GitHub Actions / codespell

notIn ==> noting, not in, notion

_other ->
["not(", expr(expr, sources, params, query), ?)]
end
Expand Down

0 comments on commit f6c10f7

Please sign in to comment.