ash_postgres/lib/functions/ilike.ex

10 lines
213 B
Elixir
Raw Permalink 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, predicate?: true
2022-12-22 10:12:49 +13:00
def args, do: [[:string, :string]]
end