ash_sqlite/lib/functions/ilike.ex

10 lines
191 B
Elixir
Raw Normal View History

2023-10-11 08:42:51 +13:00
defmodule AshSqlite.Functions.ILike do
@moduledoc """
Maps to the builtin sqlite function `ilike`.
"""
use Ash.Query.Function, name: :ilike
def args, do: [[:string, :string]]
end