ash_postgres/lib/functions/ilike.ex
2022-12-21 16:12:49 -05:00

9 lines
195 B
Elixir

defmodule AshPostgres.Functions.ILike do
@moduledoc """
Maps to the builtin postgres function `ilike`.
"""
use Ash.Query.Function, name: :ilike
def args, do: [[:string, :string]]
end