ash_postgres/lib/types/tsquery.ex

13 lines
318 B
Elixir
Raw Permalink Normal View History

2023-09-21 08:41:32 +12:00
defmodule AshPostgres.Tsquery do
@moduledoc """
A thin wrapper around `:string` for working with tsquery types in calculations.
A calculation of this type cannot be selected, but may be used in calculations.
"""
use Ash.Type.NewType, subtype_of: :term
@impl true
def storage_type(_), do: :tsquery
end