ash_postgres/lib/functions/ilike.ex

10 lines
195 B
Elixir
Raw Normal View History

2022-12-22 10:12:49 +13:00
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