CipherStashDocs
Eql

EQL API Reference

Complete API reference for the Encrypt Query Language (EQL) PostgreSQL extension.

Latest Version: 3.0.0-alpha.3

Complete API reference for the Encrypt Query Language (EQL) PostgreSQL extension.

Functions

Private Functions


Functions

->(json, text)

-> operator with text selector.

->> operator with integer array index.

->> operator with text selector.

-> operator with integer array index (0-based, JSONB convention).

Returns the sv entry whose s equals selector, with root i/v merged in. Inlinable: WHERE col -> 'sel = $1reduces structurally to eql_v3.eq_term(col -> 'sel') = eql_v3.eq_term($1)and matches a functional index oneql_v3.eq_term(col -> 'sel')`.

Intentional v2 parity: this serializes the entire matched jsonb_entry object as JSON text. It does not decrypt or return scalar plaintext like native .

Parameters

NameTypeDescription
e public.json
selectortextSelector hash.

Returns

Type: public.jsonb_entry

text The matching entry as text.

⚠️ Warning

The selector operand MUST carry a known type — a text-typed parameter ($1, the Proxy interface) or an explicit cast (col -> 'seltext). A bare untyped literal (col -> 'sel') resolves to the NATIVEjsonb -> text` operator and silently returns native jsonb semantics (a root-key lookup, typically NULL), NOT this operator: PostgreSQL reduces the public.json domain to its base type jsonb when resolving an unknown-typed RHS, and the native base-type operator wins the exact-match tiebreak. This is intrinsic to the domain type-kind and applies to the native-jsonb blockers too. See the "Typed operands" caveat in docs/reference/json-support.md.


>()

operator for ORE block types

Parameters

NameTypeDescription
FUNCTION
LEFTARG
RIGHTARG
COMMUTATOR
NEGATOR
RESTRICT
JOIN

ciphertext(jsonb)

Extract ciphertext (c) from a raw jsonb encrypted value.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload

Returns

Type: text

text Base64-encoded ciphertext.

Exceptions

  • if c is absent.

Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search
b public.text_search

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a public.text_search
b eql_v3.query_text_search

Returns

Type: boolean

boolean


contained_by(jsonb, text_match)

Operator wrapper for public.text_match.

Parameters

NameTypeDescription
ajsonb
b public.text_match

Returns

Type: boolean

boolean


contained_by(text_match, jsonb)

Operator wrapper for public.text_match.

Parameters

NameTypeDescription
a public.text_match
bjsonb

Returns

Type: boolean

boolean


contained_by(text_match, text_match)

Operator wrapper for public.text_match.

Parameters

NameTypeDescription
a public.text_match
b public.text_match

Returns

Type: boolean

boolean


contained_by(query_text_match, text_match)

Operator wrapper for eql_v3.query_text_match.

Parameters

NameTypeDescription
a eql_v3.query_text_match
b public.text_match

Returns

Type: boolean

boolean


contained_by(text_match, query_text_match)

Operator wrapper for eql_v3.query_text_match.

Parameters

NameTypeDescription
a public.text_match
b eql_v3.query_text_match

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
ajsonb
b public.text_search

Returns

Type: boolean

boolean


contained_by(text_search, jsonb)

Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
bjsonb

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
b public.text_search

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search
b public.text_search

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a public.text_search
b eql_v3.query_text_search

Returns

Type: boolean

boolean


contains(jsonb, text_match)

Operator wrapper for public.text_match.

Parameters

NameTypeDescription
ajsonb
b public.text_match

Returns

Type: boolean

boolean


contains(text_match, jsonb)

Operator wrapper for public.text_match.

Parameters

NameTypeDescription
a public.text_match
bjsonb

Returns

Type: boolean

boolean


contains(text_match, text_match)

Operator wrapper for public.text_match.

Parameters

NameTypeDescription
a public.text_match
b public.text_match

Returns

Type: boolean

boolean


contains(query_text_match, text_match)

Operator wrapper for eql_v3.query_text_match.

Parameters

NameTypeDescription
a eql_v3.query_text_match
b public.text_match

Returns

Type: boolean

boolean


contains(text_match, query_text_match)

Operator wrapper for eql_v3.query_text_match.

Parameters

NameTypeDescription
a public.text_match
b eql_v3.query_text_match

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
ajsonb
b public.text_search

Returns

Type: boolean

boolean


contains(text_search, jsonb)

Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
bjsonb

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
b public.text_search

Returns

Type: boolean

boolean


eq(jsonb, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ore

Returns

Type: boolean

boolean


eq(smallint_ord_ore, jsonb)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
bjsonb

Returns

Type: boolean

boolean


eq(smallint_ord_ore, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


eq(query_bigint_ord_ore, bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


eq(bigint_ord_ore, query_bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b eql_v3.query_bigint_ord_ore

Returns

Type: boolean

boolean


eq(jsonb, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ore

Returns

Type: boolean

boolean


eq(bigint_ord_ore, jsonb)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
bjsonb

Returns

Type: boolean

boolean


eq(bigint_ord_ore, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


eq(jsonb, real_eq)

Operator wrapper for public.real_eq.

Parameters

NameTypeDescription
ajsonb
b public.real_eq

Returns

Type: boolean

boolean


eq(real_eq, jsonb)

Operator wrapper for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
bjsonb

Returns

Type: boolean

boolean


eq(real_eq, real_eq)

Operator wrapper for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
b public.real_eq

Returns

Type: boolean

boolean


eq(query_date_ord_ore, date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


eq(date_ord_ore, query_date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b eql_v3.query_date_ord_ore

Returns

Type: boolean

boolean


eq(jsonb, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
ajsonb
b public.text_ord

Returns

Type: boolean

boolean


eq(text_ord, jsonb)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
bjsonb

Returns

Type: boolean

boolean


eq(text_ord, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
b public.text_ord

Returns

Type: boolean

boolean


eq(jsonb, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
ajsonb
b public.date_ord

Returns

Type: boolean

boolean


eq(date_ord, jsonb)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
bjsonb

Returns

Type: boolean

boolean


eq(date_ord, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
b public.date_ord

Returns

Type: boolean

boolean


eq(jsonb, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ore

Returns

Type: boolean

boolean


eq(integer_ord_ore, jsonb)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
bjsonb

Returns

Type: boolean

boolean


eq(integer_ord_ore, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search
b public.text_search

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a public.text_search
b eql_v3.query_text_search

Returns

Type: boolean

boolean


eq(query_smallint_ord_ope, smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


eq(smallint_ord_ope, query_smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b eql_v3.query_smallint_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, numeric_eq)

Operator wrapper for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
b public.numeric_eq

Returns

Type: boolean

boolean


eq(numeric_eq, jsonb)

Operator wrapper for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
bjsonb

Returns

Type: boolean

boolean


eq(numeric_eq, numeric_eq)

Operator wrapper for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


eq(jsonb, date_eq)

Operator wrapper for public.date_eq.

Parameters

NameTypeDescription
ajsonb
b public.date_eq

Returns

Type: boolean

boolean


eq(date_eq, jsonb)

Operator wrapper for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
bjsonb

Returns

Type: boolean

boolean


eq(date_eq, date_eq)

Operator wrapper for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
b public.date_eq

Returns

Type: boolean

boolean


eq(jsonb, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
ajsonb
b public.real_ord

Returns

Type: boolean

boolean


eq(real_ord, jsonb)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
bjsonb

Returns

Type: boolean

boolean


eq(real_ord, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
b public.real_ord

Returns

Type: boolean

boolean


eq(jsonb, timestamp_eq)

Operator wrapper for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_eq

Returns

Type: boolean

boolean


eq(timestamp_eq, jsonb)

Operator wrapper for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
bjsonb

Returns

Type: boolean

boolean


eq(timestamp_eq, timestamp_eq)

Operator wrapper for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


eq(query_bigint_eq, bigint_eq)

Operator wrapper for eql_v3.query_bigint_eq.

Parameters

NameTypeDescription
a eql_v3.query_bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


eq(bigint_eq, query_bigint_eq)

Operator wrapper for eql_v3.query_bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b eql_v3.query_bigint_eq

Returns

Type: boolean

boolean


eq(query_date_eq, date_eq)

Operator wrapper for eql_v3.query_date_eq.

Parameters

NameTypeDescription
a eql_v3.query_date_eq
b public.date_eq

Returns

Type: boolean

boolean


eq(date_eq, query_date_eq)

Operator wrapper for eql_v3.query_date_eq.

Parameters

NameTypeDescription
a public.date_eq
b eql_v3.query_date_eq

Returns

Type: boolean

boolean


eq(query_timestamp_eq, timestamp_eq)

Operator wrapper for eql_v3.query_timestamp_eq.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


eq(timestamp_eq, query_timestamp_eq)

Operator wrapper for eql_v3.query_timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b eql_v3.query_timestamp_eq

Returns

Type: boolean

boolean


eq(jsonb, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ope

Returns

Type: boolean

boolean


eq(text_ord_ope, jsonb)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
bjsonb

Returns

Type: boolean

boolean


eq(text_ord_ope, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, double_eq)

Operator wrapper for public.double_eq.

Parameters

NameTypeDescription
ajsonb
b public.double_eq

Returns

Type: boolean

boolean


eq(double_eq, jsonb)

Operator wrapper for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
bjsonb

Returns

Type: boolean

boolean


eq(double_eq, double_eq)

Operator wrapper for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
b public.double_eq

Returns

Type: boolean

boolean


eq(jsonb, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord

Returns

Type: boolean

boolean


eq(smallint_ord, jsonb)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
bjsonb

Returns

Type: boolean

boolean


eq(smallint_ord, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


eq(query_text_ord, text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a eql_v3.query_text_ord
b public.text_ord

Returns

Type: boolean

boolean


eq(text_ord, query_text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a public.text_ord
b eql_v3.query_text_ord

Returns

Type: boolean

boolean


eq(query_double_ord_ope, double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


eq(double_ord_ope, query_double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b eql_v3.query_double_ord_ope

Returns

Type: boolean

boolean


eq(query_numeric_eq, numeric_eq)

Operator wrapper for eql_v3.query_numeric_eq.

Parameters

NameTypeDescription
a eql_v3.query_numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


eq(numeric_eq, query_numeric_eq)

Operator wrapper for eql_v3.query_numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b eql_v3.query_numeric_eq

Returns

Type: boolean

boolean


eq(jsonb, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ope

Returns

Type: boolean

boolean


eq(double_ord_ope, jsonb)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
bjsonb

Returns

Type: boolean

boolean


eq(double_ord_ope, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ope

Returns

Type: boolean

boolean


eq(real_ord_ope, jsonb)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
bjsonb

Returns

Type: boolean

boolean


eq(real_ord_ope, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ope

Returns

Type: boolean

boolean


eq(integer_ord_ope, jsonb)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
bjsonb

Returns

Type: boolean

boolean


eq(integer_ord_ope, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ope

Returns

Type: boolean

boolean


eq(smallint_ord_ope, jsonb)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
bjsonb

Returns

Type: boolean

boolean


eq(smallint_ord_ope, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


eq(query_text_eq, text_eq)

Operator wrapper for eql_v3.query_text_eq.

Parameters

NameTypeDescription
a eql_v3.query_text_eq
b public.text_eq

Returns

Type: boolean

boolean


eq(text_eq, query_text_eq)

Operator wrapper for eql_v3.query_text_eq.

Parameters

NameTypeDescription
a public.text_eq
b eql_v3.query_text_eq

Returns

Type: boolean

boolean


eq(jsonb, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


eq(timestamp_ord_ore, jsonb)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
bjsonb

Returns

Type: boolean

boolean


eq(timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


eq(jsonb, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ope

Returns

Type: boolean

boolean


eq(numeric_ord_ope, jsonb)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
bjsonb

Returns

Type: boolean

boolean


eq(numeric_ord_ope, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, text_eq)

Operator wrapper for public.text_eq.

Parameters

NameTypeDescription
ajsonb
b public.text_eq

Returns

Type: boolean

boolean


eq(text_eq, jsonb)

Operator wrapper for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
bjsonb

Returns

Type: boolean

boolean


eq(text_eq, text_eq)

Operator wrapper for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
b public.text_eq

Returns

Type: boolean

boolean


eq(query_integer_eq, integer_eq)

Operator wrapper for eql_v3.query_integer_eq.

Parameters

NameTypeDescription
a eql_v3.query_integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


eq(integer_eq, query_integer_eq)

Operator wrapper for eql_v3.query_integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b eql_v3.query_integer_eq

Returns

Type: boolean

boolean


eq(query_date_ord, date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a eql_v3.query_date_ord
b public.date_ord

Returns

Type: boolean

boolean


eq(date_ord, query_date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a public.date_ord
b eql_v3.query_date_ord

Returns

Type: boolean

boolean


eq(query_numeric_ord_ore, numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


eq(numeric_ord_ore, query_numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b eql_v3.query_numeric_ord_ore

Returns

Type: boolean

boolean


eq(query_real_ord, real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a eql_v3.query_real_ord
b public.real_ord

Returns

Type: boolean

boolean


eq(real_ord, query_real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a public.real_ord
b eql_v3.query_real_ord

Returns

Type: boolean

boolean


eq(jsonb, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ore

Returns

Type: boolean

boolean


eq(text_ord_ore, jsonb)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
bjsonb

Returns

Type: boolean

boolean


eq(text_ord_ore, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


eq(query_double_eq, double_eq)

Operator wrapper for eql_v3.query_double_eq.

Parameters

NameTypeDescription
a eql_v3.query_double_eq
b public.double_eq

Returns

Type: boolean

boolean


eq(double_eq, query_double_eq)

Operator wrapper for eql_v3.query_double_eq.

Parameters

NameTypeDescription
a public.double_eq
b eql_v3.query_double_eq

Returns

Type: boolean

boolean


eq(jsonb, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord

Returns

Type: boolean

boolean


eq(bigint_ord, jsonb)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
bjsonb

Returns

Type: boolean

boolean


eq(bigint_ord, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


eq(query_integer_ord_ore, integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


eq(integer_ord_ore, query_integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b eql_v3.query_integer_ord_ore

Returns

Type: boolean

boolean


eq(jsonb, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ore

Returns

Type: boolean

boolean


eq(numeric_ord_ore, jsonb)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
bjsonb

Returns

Type: boolean

boolean


eq(numeric_ord_ore, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


eq(jsonb, bigint_eq)

Operator wrapper for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
b public.bigint_eq

Returns

Type: boolean

boolean


eq(bigint_eq, jsonb)

Operator wrapper for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
bjsonb

Returns

Type: boolean

boolean


eq(bigint_eq, bigint_eq)

Operator wrapper for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


eq(jsonb, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ore

Returns

Type: boolean

boolean


eq(real_ord_ore, jsonb)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
bjsonb

Returns

Type: boolean

boolean


eq(real_ord_ore, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


eq(query_text_ord_ore, text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


eq(text_ord_ore, query_text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b eql_v3.query_text_ord_ore

Returns

Type: boolean

boolean


eq(query_smallint_ord_ore, smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


eq(smallint_ord_ore, query_smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b eql_v3.query_smallint_ord_ore

Returns

Type: boolean

boolean


eq(jsonb, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
ajsonb
b public.double_ord

Returns

Type: boolean

boolean


eq(double_ord, jsonb)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
bjsonb

Returns

Type: boolean

boolean


eq(double_ord, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
b public.double_ord

Returns

Type: boolean

boolean


eq(query_timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


eq(timestamp_ord_ope, query_timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b eql_v3.query_timestamp_ord_ope

Returns

Type: boolean

boolean


eq(query_integer_ord, integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


eq(integer_ord, query_integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b eql_v3.query_integer_ord

Returns

Type: boolean

boolean


eq(query_integer_ord_ope, integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


eq(integer_ord_ope, query_integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b eql_v3.query_integer_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ope

Returns

Type: boolean

boolean


eq(bigint_ord_ope, jsonb)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
bjsonb

Returns

Type: boolean

boolean


eq(bigint_ord_ope, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


eq(query_text_ord_ope, text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


eq(text_ord_ope, query_text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b eql_v3.query_text_ord_ope

Returns

Type: boolean

boolean


eq(query_smallint_ord, smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


eq(smallint_ord, query_smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b eql_v3.query_smallint_ord

Returns

Type: boolean

boolean


eq(query_numeric_ord, numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


eq(numeric_ord, query_numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b eql_v3.query_numeric_ord

Returns

Type: boolean

boolean


eq(query_timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


eq(timestamp_ord_ore, query_timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b eql_v3.query_timestamp_ord_ore

Returns

Type: boolean

boolean


eq(jsonb, integer_eq)

Operator wrapper for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
b public.integer_eq

Returns

Type: boolean

boolean


eq(integer_eq, jsonb)

Operator wrapper for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
bjsonb

Returns

Type: boolean

boolean


eq(integer_eq, integer_eq)

Operator wrapper for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


eq(jsonb, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord

Returns

Type: boolean

boolean


eq(integer_ord, jsonb)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
bjsonb

Returns

Type: boolean

boolean


eq(integer_ord, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


eq(query_timestamp_ord, timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


eq(timestamp_ord, query_timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b eql_v3.query_timestamp_ord

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
ajsonb
b public.text_search

Returns

Type: boolean

boolean


eq(text_search, jsonb)

Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
bjsonb

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
b public.text_search

Returns

Type: boolean

boolean


eq(query_smallint_eq, smallint_eq)

Operator wrapper for eql_v3.query_smallint_eq.

Parameters

NameTypeDescription
a eql_v3.query_smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


eq(smallint_eq, query_smallint_eq)

Operator wrapper for eql_v3.query_smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b eql_v3.query_smallint_eq

Returns

Type: boolean

boolean


eq(jsonb, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord

Returns

Type: boolean

boolean


eq(timestamp_ord, jsonb)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
bjsonb

Returns

Type: boolean

boolean


eq(timestamp_ord, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


eq(query_bigint_ord_ope, bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


eq(bigint_ord_ope, query_bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b eql_v3.query_bigint_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, smallint_eq)

Operator wrapper for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
b public.smallint_eq

Returns

Type: boolean

boolean


eq(smallint_eq, jsonb)

Operator wrapper for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
bjsonb

Returns

Type: boolean

boolean


eq(smallint_eq, smallint_eq)

Operator wrapper for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


eq(query_real_ord_ope, real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


eq(real_ord_ope, query_real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b eql_v3.query_real_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord

Returns

Type: boolean

boolean


eq(numeric_ord, jsonb)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
bjsonb

Returns

Type: boolean

boolean


eq(numeric_ord, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


eq(jsonb, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ope

Returns

Type: boolean

boolean


eq(date_ord_ope, jsonb)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
bjsonb

Returns

Type: boolean

boolean


eq(date_ord_ope, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


eq(query_double_ord_ore, double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


eq(double_ord_ore, query_double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b eql_v3.query_double_ord_ore

Returns

Type: boolean

boolean


eq(jsonb, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ore

Returns

Type: boolean

boolean


eq(double_ord_ore, jsonb)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
bjsonb

Returns

Type: boolean

boolean


eq(double_ord_ore, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


eq(query_double_ord, double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a eql_v3.query_double_ord
b public.double_ord

Returns

Type: boolean

boolean


eq(double_ord, query_double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a public.double_ord
b eql_v3.query_double_ord

Returns

Type: boolean

boolean


eq(query_real_ord_ore, real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


eq(real_ord_ore, query_real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b eql_v3.query_real_ord_ore

Returns

Type: boolean

boolean


eq(query_date_ord_ope, date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


eq(date_ord_ope, query_date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b eql_v3.query_date_ord_ope

Returns

Type: boolean

boolean


eq(jsonb, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


eq(timestamp_ord_ope, jsonb)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
bjsonb

Returns

Type: boolean

boolean


eq(timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


eq(query_real_eq, real_eq)

Operator wrapper for eql_v3.query_real_eq.

Parameters

NameTypeDescription
a eql_v3.query_real_eq
b public.real_eq

Returns

Type: boolean

boolean


eq(real_eq, query_real_eq)

Operator wrapper for eql_v3.query_real_eq.

Parameters

NameTypeDescription
a public.real_eq
b eql_v3.query_real_eq

Returns

Type: boolean

boolean


eq(jsonb, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ore

Returns

Type: boolean

boolean


eq(date_ord_ore, jsonb)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
bjsonb

Returns

Type: boolean

boolean


eq(date_ord_ore, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


eq(query_numeric_ord_ope, numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


eq(numeric_ord_ope, query_numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b eql_v3.query_numeric_ord_ope

Returns

Type: boolean

boolean


eq(query_bigint_ord, bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


eq(bigint_ord, query_bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b eql_v3.query_bigint_ord

Returns

Type: boolean

boolean


eq_term(real_eq)

Index extractor for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(text_ord)

Index extractor for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


Index extractor for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(numeric_eq)

Index extractor for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(date_eq)

Index extractor for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(timestamp_eq)

Index extractor for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_bigint_eq)

Index extractor for eql_v3.query_bigint_eq.

Parameters

NameTypeDescription
a eql_v3.query_bigint_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_date_eq)

Index extractor for eql_v3.query_date_eq.

Parameters

NameTypeDescription
a eql_v3.query_date_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_timestamp_eq)

Index extractor for eql_v3.query_timestamp_eq.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(text_ord_ope)

Index extractor for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(double_eq)

Index extractor for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_text_ord)

Index extractor for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a eql_v3.query_text_ord

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_numeric_eq)

Index extractor for eql_v3.query_numeric_eq.

Parameters

NameTypeDescription
a eql_v3.query_numeric_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_text_eq)

Index extractor for eql_v3.query_text_eq.

Parameters

NameTypeDescription
a eql_v3.query_text_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(text_eq)

Index extractor for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_integer_eq)

Index extractor for eql_v3.query_integer_eq.

Parameters

NameTypeDescription
a eql_v3.query_integer_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(text_ord_ore)

Index extractor for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_double_eq)

Index extractor for eql_v3.query_double_eq.

Parameters

NameTypeDescription
a eql_v3.query_double_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(bigint_eq)

Index extractor for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(jsonb_entry)

XOR-aware equality term extractor for public.jsonb_entry.

Returns the bytea of whichever deterministic term the sv entry carries — hm (HMAC-256) or oc (CLLW ORE). The two byte distributions are disjoint by construction, so byte equality on the coalesce is unambiguous. Canonical equality extractor used by = / <> on jsonb_entry.

Parameters

NameTypeDescription
entry public.jsonb_entry

Returns

Type: bytea

bytea Decoded hm or oc bytes (NULL if entry is NULL).


eq_term(query_text_ord_ore)

Index extractor for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ore

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_text_ord_ope)

Index extractor for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ope

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(integer_eq)

Index extractor for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


Index extractor for public.text_search.

Parameters

NameTypeDescription
a public.text_search

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_smallint_eq)

Index extractor for eql_v3.query_smallint_eq.

Parameters

NameTypeDescription
a eql_v3.query_smallint_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(smallint_eq)

Index extractor for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eq_term(query_real_eq)

Index extractor for eql_v3.query_real_eq.

Parameters

NameTypeDescription
a eql_v3.query_real_eq

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256


eql_v3(json, query_jsonb)

contains operator with an query_jsonb needle.

Inlines to native jsonb @> over eql_v3.to_ste_vec_query(a)::jsonb, so a functional GIN index on the same expression engages.

Parameters

NameTypeDescription
a public.json
b eql_v3.query_jsonb

Returns

Type: boolean

boolean True if a contains b.


eql_v3(json, json)

contains operator (document, document).

contains operator with a single jsonb_entry needle.

Parameters

NameTypeDescription
a public.json
b public.json

Returns

Type: boolean

boolean True if a contains an sv entry matching b.

Variants

  • eql_v3.ste_vec_contains

eql_v3_internal(jsonb, smallint_ord_ore)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.smallint_ord_ore)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
selectorpublic.smallint_ord_ore

Returns

Type: public.smallint_ord_ore

text


eql_v3_internal(smallint_ord_ore, smallint_ord_ore)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(smallint_ord_ore, text)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint_ord_ore, text)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint_ord_ore, text)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
selectortext

Returns

Type: public.smallint_ord_ore

text


eql_v3_internal(jsonb, bigint_ord_ore)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.bigint_ord_ore)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
selectorpublic.bigint_ord_ore

Returns

Type: public.bigint_ord_ore

text


eql_v3_internal(bigint_ord_ore, bigint_ord_ore)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(bigint_ord_ore, text)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint_ord_ore, text)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint_ord_ore, text)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
selectortext

Returns

Type: public.bigint_ord_ore

text


eql_v3_internal(jsonb, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
ajsonb
b public.real_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
ajsonb
selectorpublic.real_eq

Returns

Type: public.real_eq

text


eql_v3_internal(real_eq, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
b public.real_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(real_eq, text)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real_eq, text)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real_eq, text)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
selectortext

Returns

Type: public.real_eq

text


eql_v3_internal(jsonb, text_ord)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
ajsonb
b public.text_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.text_ord)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
ajsonb
selectorpublic.text_ord

Returns

Type: public.text_ord

text


eql_v3_internal(text_ord, text_ord)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
b public.text_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(text_ord, text)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_ord, text)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_ord, text)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
selectortext

Returns

Type: public.text_ord

text


eql_v3_internal(jsonb, date_ord)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
ajsonb
b public.date_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.date_ord)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
ajsonb
selectorpublic.date_ord

Returns

Type: public.date_ord

text


eql_v3_internal(date_ord, date_ord)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
b public.date_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(date_ord, text)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date_ord, text)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date_ord, text)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
selectortext

Returns

Type: public.date_ord

text


eql_v3_internal(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
double

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
selectorpublic.

Returns

Type: public.double

text


eql_v3_internal()

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
double

Returns

Type: jsonb

jsonb


eql_v3_internal(text)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
selectortext

Returns

Type: public.double

text


eql_v3_internal(jsonb, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
b public.date

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
selectorpublic.date

Returns

Type: public.date

text


eql_v3_internal(date, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
b public.date

Returns

Type: jsonb

jsonb


eql_v3_internal(date, text)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date, text)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date, text)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
selectortext

Returns

Type: public.date

text


eql_v3_internal(jsonb, integer_ord_ore)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.integer_ord_ore)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
selectorpublic.integer_ord_ore

Returns

Type: public.integer_ord_ore

text


eql_v3_internal(integer_ord_ore, integer_ord_ore)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b public.integer_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(integer_ord_ore, text)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer_ord_ore, text)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer_ord_ore, text)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
selectortext

Returns

Type: public.integer_ord_ore

text


eql_v3_internal(jsonb, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
b public.numeric_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
selectorpublic.numeric_eq

Returns

Type: public.numeric_eq

text


eql_v3_internal(numeric_eq, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b public.numeric_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(numeric_eq, text)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric_eq, text)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric_eq, text)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
selectortext

Returns

Type: public.numeric_eq

text


eql_v3_internal(jsonb, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
ajsonb
b public.date_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
ajsonb
selectorpublic.date_eq

Returns

Type: public.date_eq

text


eql_v3_internal(date_eq, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
b public.date_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(date_eq, text)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date_eq, text)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date_eq, text)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
selectortext

Returns

Type: public.date_eq

text


eql_v3_internal(jsonb, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
b public.boolean

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
selectorpublic.boolean

Returns

Type: public.boolean

text


eql_v3_internal(boolean, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
b public.boolean

Returns

Type: jsonb

jsonb


eql_v3_internal(boolean, text)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
btext

Returns

Type: boolean

jsonb


eql_v3_internal(boolean, text)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
btext

Returns

Type: boolean

jsonb


eql_v3_internal(boolean, text)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
selectortext

Returns

Type: public.boolean

text


eql_v3_internal(jsonb, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
b public.numeric

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
selectorpublic.numeric

Returns

Type: public.numeric

text


eql_v3_internal(numeric, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
b public.numeric

Returns

Type: jsonb

jsonb


eql_v3_internal(numeric, text)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric, text)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric, text)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
selectortext

Returns

Type: public.numeric

text


eql_v3_internal(jsonb, real_ord)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
ajsonb
b public.real_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.real_ord)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
ajsonb
selectorpublic.real_ord

Returns

Type: public.real_ord

text


eql_v3_internal(real_ord, real_ord)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
b public.real_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(real_ord, text)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real_ord, text)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real_ord, text)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
selectortext

Returns

Type: public.real_ord

text


eql_v3_internal(jsonb, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
selectorpublic.timestamp_eq

Returns

Type: public.timestamp_eq

text


eql_v3_internal(timestamp_eq, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b public.timestamp_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(timestamp_eq, text)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp_eq, text)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp_eq, text)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
selectortext

Returns

Type: public.timestamp_eq

text


eql_v3_internal(jsonb, text_ord_ope)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.text_ord_ope)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
selectorpublic.text_ord_ope

Returns

Type: public.text_ord_ope

text


eql_v3_internal(text_ord_ope, text_ord_ope)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b public.text_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(text_ord_ope, text)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_ord_ope, text)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_ord_ope, text)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
selectortext

Returns

Type: public.text_ord_ope

text


eql_v3_internal(jsonb, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
ajsonb
b public.double_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
ajsonb
selectorpublic.double_eq

Returns

Type: public.double_eq

text


eql_v3_internal(double_eq, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
b public.double_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(double_eq, text)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(double_eq, text)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(double_eq, text)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
selectortext

Returns

Type: public.double_eq

text


eql_v3_internal(jsonb, smallint_ord)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.smallint_ord)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
selectorpublic.smallint_ord

Returns

Type: public.smallint_ord

text


eql_v3_internal(smallint_ord, smallint_ord)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b public.smallint_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(smallint_ord, text)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint_ord, text)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint_ord, text)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
selectortext

Returns

Type: public.smallint_ord

text


eql_v3_internal(jsonb, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
b public.timestamp

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
selectorpublic.timestamp

Returns

Type: public.timestamp

text


eql_v3_internal(timestamp, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
b public.timestamp

Returns

Type: jsonb

jsonb


eql_v3_internal(timestamp, text)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp, text)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp, text)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
selectortext

Returns

Type: public.timestamp

text


eql_v3_internal(jsonb, double_ord_ope)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.double_ord_ope)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
selectorpublic.double_ord_ope

Returns

Type: public.double_ord_ope

text


eql_v3_internal(double_ord_ope, double_ord_ope)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b public.double_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(double_ord_ope, text)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(double_ord_ope, text)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(double_ord_ope, text)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
selectortext

Returns

Type: public.double_ord_ope

text


eql_v3_internal(jsonb, real_ord_ope)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.real_ord_ope)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
selectorpublic.real_ord_ope

Returns

Type: public.real_ord_ope

text


eql_v3_internal(real_ord_ope, real_ord_ope)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b public.real_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(real_ord_ope, text)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real_ord_ope, text)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real_ord_ope, text)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
selectortext

Returns

Type: public.real_ord_ope

text


eql_v3_internal(jsonb, integer_ord_ope)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.integer_ord_ope)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
selectorpublic.integer_ord_ope

Returns

Type: public.integer_ord_ope

text


eql_v3_internal(integer_ord_ope, integer_ord_ope)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b public.integer_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(integer_ord_ope, text)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer_ord_ope, text)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer_ord_ope, text)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
selectortext

Returns

Type: public.integer_ord_ope

text


eql_v3_internal(jsonb, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
ajsonb
b public.text_match

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
ajsonb
selectorpublic.text_match

Returns

Type: public.text_match

text


eql_v3_internal(text_match, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
b public.text_match

Returns

Type: jsonb

jsonb


eql_v3_internal(text_match, text)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_match, text)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_match, text)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
selectortext

Returns

Type: public.text_match

text


eql_v3_internal(jsonb, smallint_ord_ope)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.smallint_ord_ope)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
selectorpublic.smallint_ord_ope

Returns

Type: public.smallint_ord_ope

text


eql_v3_internal(smallint_ord_ope, smallint_ord_ope)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(smallint_ord_ope, text)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint_ord_ope, text)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint_ord_ope, text)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
selectortext

Returns

Type: public.smallint_ord_ope

text


eql_v3_internal(jsonb, timestamp_ord_ore)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.timestamp_ord_ore)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
selectorpublic.timestamp_ord_ore

Returns

Type: public.timestamp_ord_ore

text


eql_v3_internal(timestamp_ord_ore, timestamp_ord_ore)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(timestamp_ord_ore, text)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp_ord_ore, text)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp_ord_ore, text)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
selectortext

Returns

Type: public.timestamp_ord_ore

text


eql_v3_internal(jsonb, numeric_ord_ope)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.numeric_ord_ope)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
selectorpublic.numeric_ord_ope

Returns

Type: public.numeric_ord_ope

text


eql_v3_internal(numeric_ord_ope, numeric_ord_ope)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(numeric_ord_ope, text)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric_ord_ope, text)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric_ord_ope, text)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
selectortext

Returns

Type: public.numeric_ord_ope

text


eql_v3_internal(jsonb, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
ajsonb
b public.text_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
ajsonb
selectorpublic.text_eq

Returns

Type: public.text_eq

text


eql_v3_internal(text_eq, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
b public.text_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(text_eq, text)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_eq, text)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_eq, text)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
selectortext

Returns

Type: public.text_eq

text


eql_v3_internal(jsonb, text_ord_ore)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.text_ord_ore)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
selectorpublic.text_ord_ore

Returns

Type: public.text_ord_ore

text


eql_v3_internal(text_ord_ore, text_ord_ore)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b public.text_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(text_ord_ore, text)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_ord_ore, text)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_ord_ore, text)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
selectortext

Returns

Type: public.text_ord_ore

text


eql_v3_internal(jsonb, bigint_ord)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.bigint_ord)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
selectorpublic.bigint_ord

Returns

Type: public.bigint_ord

text


eql_v3_internal(bigint_ord, bigint_ord)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b public.bigint_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(bigint_ord, text)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint_ord, text)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint_ord, text)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
selectortext

Returns

Type: public.bigint_ord

text


eql_v3_internal(jsonb, numeric_ord_ore)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.numeric_ord_ore)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
selectorpublic.numeric_ord_ore

Returns

Type: public.numeric_ord_ore

text


eql_v3_internal(numeric_ord_ore, numeric_ord_ore)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(numeric_ord_ore, text)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric_ord_ore, text)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric_ord_ore, text)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
selectortext

Returns

Type: public.numeric_ord_ore

text


eql_v3_internal(jsonb, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
b public.bigint_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
selectorpublic.bigint_eq

Returns

Type: public.bigint_eq

text


eql_v3_internal(bigint_eq, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b public.bigint_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(bigint_eq, text)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint_eq, text)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint_eq, text)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
selectortext

Returns

Type: public.bigint_eq

text


eql_v3_internal(jsonb, real_ord_ore)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.real_ord_ore)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
selectorpublic.real_ord_ore

Returns

Type: public.real_ord_ore

text


eql_v3_internal(real_ord_ore, real_ord_ore)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b public.real_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(real_ord_ore, text)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real_ord_ore, text)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real_ord_ore, text)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
selectortext

Returns

Type: public.real_ord_ore

text


eql_v3_internal(jsonb, double_ord)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
ajsonb
b public.double_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.double_ord)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
ajsonb
selectorpublic.double_ord

Returns

Type: public.double_ord

text


eql_v3_internal(double_ord, double_ord)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
b public.double_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(double_ord, text)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(double_ord, text)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(double_ord, text)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
selectortext

Returns

Type: public.double_ord

text


eql_v3_internal(jsonb, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
b public.bigint

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
selectorpublic.bigint

Returns

Type: public.bigint

text


eql_v3_internal(bigint, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
b public.bigint

Returns

Type: jsonb

jsonb


eql_v3_internal(bigint, text)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint, text)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint, text)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
selectortext

Returns

Type: public.bigint

text


eql_v3_internal(jsonb, bigint_ord_ope)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.bigint_ord_ope)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
selectorpublic.bigint_ord_ope

Returns

Type: public.bigint_ord_ope

text


eql_v3_internal(bigint_ord_ope, bigint_ord_ope)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(bigint_ord_ope, text)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint_ord_ope, text)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(bigint_ord_ope, text)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
selectortext

Returns

Type: public.bigint_ord_ope

text


eql_v3_internal(jsonb, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
b public.smallint

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
selectorpublic.smallint

Returns

Type: public.smallint

text


eql_v3_internal(smallint, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
b public.smallint

Returns

Type: jsonb

jsonb


eql_v3_internal(smallint, text)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint, text)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint, text)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
selectortext

Returns

Type: public.smallint

text


eql_v3_internal(jsonb, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
b public.text

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
selectorpublic.text

Returns

Type: public.text

text


eql_v3_internal(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
b public.text

Returns

Type: jsonb

jsonb


eql_v3_internal(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
selectortext

Returns

Type: public.text

text


eql_v3_internal(jsonb, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
b public.integer_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
selectorpublic.integer_eq

Returns

Type: public.integer_eq

text


eql_v3_internal(integer_eq, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b public.integer_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(integer_eq, text)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer_eq, text)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer_eq, text)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
selectortext

Returns

Type: public.integer_eq

text


eql_v3_internal(jsonb, integer_ord)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.integer_ord)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
selectorpublic.integer_ord

Returns

Type: public.integer_ord

text


eql_v3_internal(integer_ord, integer_ord)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b public.integer_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(integer_ord, text)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer_ord, text)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer_ord, text)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
selectortext

Returns

Type: public.integer_ord

text


Unsupported operator blocker for public.text_search.

Parameters

NameTypeDescription
ajsonb
b public.text_search

Returns

Type: jsonb

jsonb


Unsupported operator blocker for public.text_search.

Parameters

NameTypeDescription
ajsonb
selectorpublic.text_search

Returns

Type: public.text_search

text


Unsupported operator blocker for public.text_search.

Parameters

NameTypeDescription
a public.text_search
b public.text_search

Returns

Type: jsonb

jsonb


eql_v3_internal(text_search, text)

Unsupported operator blocker for public.text_search.

Parameters

NameTypeDescription
a public.text_search
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_search, text)

Unsupported operator blocker for public.text_search.

Parameters

NameTypeDescription
a public.text_search
btext

Returns

Type: boolean

jsonb


eql_v3_internal(text_search, text)

Unsupported operator blocker for public.text_search.

Parameters

NameTypeDescription
a public.text_search
selectortext

Returns

Type: public.text_search

text


eql_v3_internal(jsonb, timestamp_ord)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.timestamp_ord)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
selectorpublic.timestamp_ord

Returns

Type: public.timestamp_ord

text


eql_v3_internal(timestamp_ord, timestamp_ord)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b public.timestamp_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(timestamp_ord, text)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp_ord, text)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp_ord, text)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
selectortext

Returns

Type: public.timestamp_ord

text


eql_v3_internal(jsonb, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
b public.smallint_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
selectorpublic.smallint_eq

Returns

Type: public.smallint_eq

text


eql_v3_internal(smallint_eq, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b public.smallint_eq

Returns

Type: jsonb

jsonb


eql_v3_internal(smallint_eq, text)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint_eq, text)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
btext

Returns

Type: boolean

jsonb


eql_v3_internal(smallint_eq, text)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
selectortext

Returns

Type: public.smallint_eq

text


eql_v3_internal(jsonb, numeric_ord)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.numeric_ord)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
selectorpublic.numeric_ord

Returns

Type: public.numeric_ord

text


eql_v3_internal(numeric_ord, numeric_ord)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b public.numeric_ord

Returns

Type: jsonb

jsonb


eql_v3_internal(numeric_ord, text)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric_ord, text)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
btext

Returns

Type: boolean

jsonb


eql_v3_internal(numeric_ord, text)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
selectortext

Returns

Type: public.numeric_ord

text


eql_v3_internal(jsonb, date_ord_ope)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.date_ord_ope)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
selectorpublic.date_ord_ope

Returns

Type: public.date_ord_ope

text


eql_v3_internal(date_ord_ope, date_ord_ope)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b public.date_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(date_ord_ope, text)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date_ord_ope, text)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date_ord_ope, text)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
selectortext

Returns

Type: public.date_ord_ope

text


eql_v3_internal(jsonb, double_ord_ore)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.double_ord_ore)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
selectorpublic.double_ord_ore

Returns

Type: public.double_ord_ore

text


eql_v3_internal(double_ord_ore, double_ord_ore)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b public.double_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(double_ord_ore, text)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(double_ord_ore, text)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(double_ord_ore, text)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
selectortext

Returns

Type: public.double_ord_ore

text


eql_v3_internal(jsonb, timestamp_ord_ope)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.timestamp_ord_ope)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
selectorpublic.timestamp_ord_ope

Returns

Type: public.timestamp_ord_ope

text


eql_v3_internal(timestamp_ord_ope, timestamp_ord_ope)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: jsonb

jsonb


eql_v3_internal(timestamp_ord_ope, text)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp_ord_ope, text)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
btext

Returns

Type: boolean

jsonb


eql_v3_internal(timestamp_ord_ope, text)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
selectortext

Returns

Type: public.timestamp_ord_ope

text


eql_v3_internal(jsonb, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
b public.integer

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
selectorpublic.integer

Returns

Type: public.integer

text


eql_v3_internal(integer, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
b public.integer

Returns

Type: jsonb

jsonb


eql_v3_internal(integer, text)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer, text)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
btext

Returns

Type: boolean

jsonb


eql_v3_internal(integer, text)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
selectortext

Returns

Type: public.integer

text


eql_v3_internal(jsonb, date_ord_ore)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.date_ord_ore)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
selectorpublic.date_ord_ore

Returns

Type: public.date_ord_ore

text


eql_v3_internal(date_ord_ore, date_ord_ore)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b public.date_ord_ore

Returns

Type: jsonb

jsonb


eql_v3_internal(date_ord_ore, text)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date_ord_ore, text)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
btext

Returns

Type: boolean

jsonb


eql_v3_internal(date_ord_ore, text)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
selectortext

Returns

Type: public.date_ord_ore

text


eql_v3_internal(jsonb, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
b public.real

Returns

Type: jsonb

jsonb


eql_v3_internal(jsonb, public.real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
selectorpublic.real

Returns

Type: public.real

text


eql_v3_internal(real, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
b public.real

Returns

Type: jsonb

jsonb


eql_v3_internal(real, text)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real, text)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
btext

Returns

Type: boolean

jsonb


eql_v3_internal(real, text)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
selectortext

Returns

Type: public.real

text


eql_v3_is_valid_ste_vec_document_payload(jsonb)

Validate a root SteVec document payload.

Parameters

NameTypeDescription
valjsonb

eql_v3_is_valid_ste_vec_entry_payload(jsonb)

Validate a single SteVec entry payload.

Parameters

NameTypeDescription
valjsonb

eql_v3_is_valid_ste_vec_query_payload(jsonb)

Validate a SteVec containment query payload.

Parameters

NameTypeDescription
valjsonb

gt(jsonb, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ore

Returns

Type: boolean

boolean


gt(smallint_ord_ore, jsonb)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
bjsonb

Returns

Type: boolean

boolean


gt(smallint_ord_ore, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


gt(query_bigint_ord_ore, bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


gt(bigint_ord_ore, query_bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b eql_v3.query_bigint_ord_ore

Returns

Type: boolean

boolean


gt(jsonb, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ore

Returns

Type: boolean

boolean


gt(bigint_ord_ore, jsonb)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
bjsonb

Returns

Type: boolean

boolean


gt(bigint_ord_ore, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


gt(query_date_ord_ore, date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


gt(date_ord_ore, query_date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b eql_v3.query_date_ord_ore

Returns

Type: boolean

boolean


gt(jsonb, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
ajsonb
b public.text_ord

Returns

Type: boolean

boolean


gt(text_ord, jsonb)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
bjsonb

Returns

Type: boolean

boolean


gt(text_ord, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
b public.text_ord

Returns

Type: boolean

boolean


gt(jsonb, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
ajsonb
b public.date_ord

Returns

Type: boolean

boolean


gt(date_ord, jsonb)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
bjsonb

Returns

Type: boolean

boolean


gt(date_ord, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
b public.date_ord

Returns

Type: boolean

boolean


gt(jsonb, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ore

Returns

Type: boolean

boolean


gt(integer_ord_ore, jsonb)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
bjsonb

Returns

Type: boolean

boolean


gt(integer_ord_ore, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search
b public.text_search

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a public.text_search
b eql_v3.query_text_search

Returns

Type: boolean

boolean


gt(query_smallint_ord_ope, smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


gt(smallint_ord_ope, query_smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b eql_v3.query_smallint_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
ajsonb
b public.real_ord

Returns

Type: boolean

boolean


gt(real_ord, jsonb)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
bjsonb

Returns

Type: boolean

boolean


gt(real_ord, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
b public.real_ord

Returns

Type: boolean

boolean


gt(jsonb, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ope

Returns

Type: boolean

boolean


gt(text_ord_ope, jsonb)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
bjsonb

Returns

Type: boolean

boolean


gt(text_ord_ope, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord

Returns

Type: boolean

boolean


gt(smallint_ord, jsonb)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
bjsonb

Returns

Type: boolean

boolean


gt(smallint_ord, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


gt(query_text_ord, text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a eql_v3.query_text_ord
b public.text_ord

Returns

Type: boolean

boolean


gt(text_ord, query_text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a public.text_ord
b eql_v3.query_text_ord

Returns

Type: boolean

boolean


gt(query_double_ord_ope, double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


gt(double_ord_ope, query_double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b eql_v3.query_double_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ope

Returns

Type: boolean

boolean


gt(double_ord_ope, jsonb)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
bjsonb

Returns

Type: boolean

boolean


gt(double_ord_ope, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ope

Returns

Type: boolean

boolean


gt(real_ord_ope, jsonb)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
bjsonb

Returns

Type: boolean

boolean


gt(real_ord_ope, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ope

Returns

Type: boolean

boolean


gt(integer_ord_ope, jsonb)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
bjsonb

Returns

Type: boolean

boolean


gt(integer_ord_ope, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ope

Returns

Type: boolean

boolean


gt(smallint_ord_ope, jsonb)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
bjsonb

Returns

Type: boolean

boolean


gt(smallint_ord_ope, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


gt(timestamp_ord_ore, jsonb)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
bjsonb

Returns

Type: boolean

boolean


gt(timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


gt(jsonb, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ope

Returns

Type: boolean

boolean


gt(numeric_ord_ope, jsonb)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
bjsonb

Returns

Type: boolean

boolean


gt(numeric_ord_ope, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


gt(query_date_ord, date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a eql_v3.query_date_ord
b public.date_ord

Returns

Type: boolean

boolean


gt(date_ord, query_date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a public.date_ord
b eql_v3.query_date_ord

Returns

Type: boolean

boolean


gt(query_numeric_ord_ore, numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


gt(numeric_ord_ore, query_numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b eql_v3.query_numeric_ord_ore

Returns

Type: boolean

boolean


gt(query_real_ord, real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a eql_v3.query_real_ord
b public.real_ord

Returns

Type: boolean

boolean


gt(real_ord, query_real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a public.real_ord
b eql_v3.query_real_ord

Returns

Type: boolean

boolean


gt(jsonb, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ore

Returns

Type: boolean

boolean


gt(text_ord_ore, jsonb)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
bjsonb

Returns

Type: boolean

boolean


gt(text_ord_ore, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


gt(jsonb, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord

Returns

Type: boolean

boolean


gt(bigint_ord, jsonb)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
bjsonb

Returns

Type: boolean

boolean


gt(bigint_ord, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


gt(query_integer_ord_ore, integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


gt(integer_ord_ore, query_integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b eql_v3.query_integer_ord_ore

Returns

Type: boolean

boolean


gt(jsonb, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ore

Returns

Type: boolean

boolean


gt(numeric_ord_ore, jsonb)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
bjsonb

Returns

Type: boolean

boolean


gt(numeric_ord_ore, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


gt(jsonb, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ore

Returns

Type: boolean

boolean


gt(real_ord_ore, jsonb)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
bjsonb

Returns

Type: boolean

boolean


gt(real_ord_ore, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


gt(query_text_ord_ore, text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


gt(text_ord_ore, query_text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b eql_v3.query_text_ord_ore

Returns

Type: boolean

boolean


gt(query_smallint_ord_ore, smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


gt(smallint_ord_ore, query_smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b eql_v3.query_smallint_ord_ore

Returns

Type: boolean

boolean


gt(jsonb, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
ajsonb
b public.double_ord

Returns

Type: boolean

boolean


gt(double_ord, jsonb)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
bjsonb

Returns

Type: boolean

boolean


gt(double_ord, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
b public.double_ord

Returns

Type: boolean

boolean


gt(query_timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


gt(timestamp_ord_ope, query_timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b eql_v3.query_timestamp_ord_ope

Returns

Type: boolean

boolean


gt(query_integer_ord, integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


gt(integer_ord, query_integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b eql_v3.query_integer_ord

Returns

Type: boolean

boolean


gt(query_integer_ord_ope, integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


gt(integer_ord_ope, query_integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b eql_v3.query_integer_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ope

Returns

Type: boolean

boolean


gt(bigint_ord_ope, jsonb)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
bjsonb

Returns

Type: boolean

boolean


gt(bigint_ord_ope, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


gt(query_text_ord_ope, text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


gt(text_ord_ope, query_text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b eql_v3.query_text_ord_ope

Returns

Type: boolean

boolean


gt(query_smallint_ord, smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


gt(smallint_ord, query_smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b eql_v3.query_smallint_ord

Returns

Type: boolean

boolean


gt(query_numeric_ord, numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


gt(numeric_ord, query_numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b eql_v3.query_numeric_ord

Returns

Type: boolean

boolean


gt(query_timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


gt(timestamp_ord_ore, query_timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b eql_v3.query_timestamp_ord_ore

Returns

Type: boolean

boolean


gt(jsonb, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord

Returns

Type: boolean

boolean


gt(integer_ord, jsonb)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
bjsonb

Returns

Type: boolean

boolean


gt(integer_ord, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


gt(query_timestamp_ord, timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


gt(timestamp_ord, query_timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b eql_v3.query_timestamp_ord

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
ajsonb
b public.text_search

Returns

Type: boolean

boolean


gt(text_search, jsonb)

Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
bjsonb

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
b public.text_search

Returns

Type: boolean

boolean


gt(jsonb, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord

Returns

Type: boolean

boolean


gt(timestamp_ord, jsonb)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
bjsonb

Returns

Type: boolean

boolean


gt(timestamp_ord, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


gt(query_bigint_ord_ope, bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


gt(bigint_ord_ope, query_bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b eql_v3.query_bigint_ord_ope

Returns

Type: boolean

boolean


gt(query_real_ord_ope, real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


gt(real_ord_ope, query_real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b eql_v3.query_real_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord

Returns

Type: boolean

boolean


gt(numeric_ord, jsonb)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
bjsonb

Returns

Type: boolean

boolean


gt(numeric_ord, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


gt(jsonb, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ope

Returns

Type: boolean

boolean


gt(date_ord_ope, jsonb)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
bjsonb

Returns

Type: boolean

boolean


gt(date_ord_ope, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


gt(query_double_ord_ore, double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


gt(double_ord_ore, query_double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b eql_v3.query_double_ord_ore

Returns

Type: boolean

boolean


gt(jsonb, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ore

Returns

Type: boolean

boolean


gt(double_ord_ore, jsonb)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
bjsonb

Returns

Type: boolean

boolean


gt(double_ord_ore, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


gt(query_double_ord, double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a eql_v3.query_double_ord
b public.double_ord

Returns

Type: boolean

boolean


gt(double_ord, query_double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a public.double_ord
b eql_v3.query_double_ord

Returns

Type: boolean

boolean


gt(query_real_ord_ore, real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


gt(real_ord_ore, query_real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b eql_v3.query_real_ord_ore

Returns

Type: boolean

boolean


gt(query_date_ord_ope, date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


gt(date_ord_ope, query_date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b eql_v3.query_date_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


gt(timestamp_ord_ope, jsonb)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
bjsonb

Returns

Type: boolean

boolean


gt(timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


gt(jsonb, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ore

Returns

Type: boolean

boolean


gt(date_ord_ore, jsonb)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
bjsonb

Returns

Type: boolean

boolean


gt(date_ord_ore, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


gt(query_numeric_ord_ope, numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


gt(numeric_ord_ope, query_numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b eql_v3.query_numeric_ord_ope

Returns

Type: boolean

boolean


gt(query_bigint_ord, bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


gt(bigint_ord, query_bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b eql_v3.query_bigint_ord

Returns

Type: boolean

boolean


gte(jsonb, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ore

Returns

Type: boolean

boolean


gte(smallint_ord_ore, jsonb)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
bjsonb

Returns

Type: boolean

boolean


gte(smallint_ord_ore, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


gte(query_bigint_ord_ore, bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


gte(bigint_ord_ore, query_bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b eql_v3.query_bigint_ord_ore

Returns

Type: boolean

boolean


gte(jsonb, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ore

Returns

Type: boolean

boolean


gte(bigint_ord_ore, jsonb)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
bjsonb

Returns

Type: boolean

boolean


gte(bigint_ord_ore, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


gte(query_date_ord_ore, date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


gte(date_ord_ore, query_date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b eql_v3.query_date_ord_ore

Returns

Type: boolean

boolean


gte(jsonb, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
ajsonb
b public.text_ord

Returns

Type: boolean

boolean


gte(text_ord, jsonb)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
bjsonb

Returns

Type: boolean

boolean


gte(text_ord, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
b public.text_ord

Returns

Type: boolean

boolean


gte(jsonb, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
ajsonb
b public.date_ord

Returns

Type: boolean

boolean


gte(date_ord, jsonb)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
bjsonb

Returns

Type: boolean

boolean


gte(date_ord, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
b public.date_ord

Returns

Type: boolean

boolean


gte(jsonb, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ore

Returns

Type: boolean

boolean


gte(integer_ord_ore, jsonb)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
bjsonb

Returns

Type: boolean

boolean


gte(integer_ord_ore, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search
b public.text_search

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a public.text_search
b eql_v3.query_text_search

Returns

Type: boolean

boolean


gte(query_smallint_ord_ope, smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


gte(smallint_ord_ope, query_smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b eql_v3.query_smallint_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
ajsonb
b public.real_ord

Returns

Type: boolean

boolean


gte(real_ord, jsonb)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
bjsonb

Returns

Type: boolean

boolean


gte(real_ord, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
b public.real_ord

Returns

Type: boolean

boolean


gte(jsonb, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ope

Returns

Type: boolean

boolean


gte(text_ord_ope, jsonb)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
bjsonb

Returns

Type: boolean

boolean


gte(text_ord_ope, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord

Returns

Type: boolean

boolean


gte(smallint_ord, jsonb)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
bjsonb

Returns

Type: boolean

boolean


gte(smallint_ord, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


gte(query_text_ord, text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a eql_v3.query_text_ord
b public.text_ord

Returns

Type: boolean

boolean


gte(text_ord, query_text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a public.text_ord
b eql_v3.query_text_ord

Returns

Type: boolean

boolean


gte(query_double_ord_ope, double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


gte(double_ord_ope, query_double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b eql_v3.query_double_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ope

Returns

Type: boolean

boolean


gte(double_ord_ope, jsonb)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
bjsonb

Returns

Type: boolean

boolean


gte(double_ord_ope, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ope

Returns

Type: boolean

boolean


gte(real_ord_ope, jsonb)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
bjsonb

Returns

Type: boolean

boolean


gte(real_ord_ope, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ope

Returns

Type: boolean

boolean


gte(integer_ord_ope, jsonb)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
bjsonb

Returns

Type: boolean

boolean


gte(integer_ord_ope, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ope

Returns

Type: boolean

boolean


gte(smallint_ord_ope, jsonb)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
bjsonb

Returns

Type: boolean

boolean


gte(smallint_ord_ope, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


gte(timestamp_ord_ore, jsonb)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
bjsonb

Returns

Type: boolean

boolean


gte(timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


gte(jsonb, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ope

Returns

Type: boolean

boolean


gte(numeric_ord_ope, jsonb)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
bjsonb

Returns

Type: boolean

boolean


gte(numeric_ord_ope, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


gte(query_date_ord, date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a eql_v3.query_date_ord
b public.date_ord

Returns

Type: boolean

boolean


gte(date_ord, query_date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a public.date_ord
b eql_v3.query_date_ord

Returns

Type: boolean

boolean


gte(query_numeric_ord_ore, numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


gte(numeric_ord_ore, query_numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b eql_v3.query_numeric_ord_ore

Returns

Type: boolean

boolean


gte(query_real_ord, real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a eql_v3.query_real_ord
b public.real_ord

Returns

Type: boolean

boolean


gte(real_ord, query_real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a public.real_ord
b eql_v3.query_real_ord

Returns

Type: boolean

boolean


gte(jsonb, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ore

Returns

Type: boolean

boolean


gte(text_ord_ore, jsonb)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
bjsonb

Returns

Type: boolean

boolean


gte(text_ord_ore, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


gte(jsonb, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord

Returns

Type: boolean

boolean


gte(bigint_ord, jsonb)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
bjsonb

Returns

Type: boolean

boolean


gte(bigint_ord, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


gte(query_integer_ord_ore, integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


gte(integer_ord_ore, query_integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b eql_v3.query_integer_ord_ore

Returns

Type: boolean

boolean


gte(jsonb, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ore

Returns

Type: boolean

boolean


gte(numeric_ord_ore, jsonb)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
bjsonb

Returns

Type: boolean

boolean


gte(numeric_ord_ore, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


gte(jsonb, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ore

Returns

Type: boolean

boolean


gte(real_ord_ore, jsonb)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
bjsonb

Returns

Type: boolean

boolean


gte(real_ord_ore, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


gte(query_text_ord_ore, text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


gte(text_ord_ore, query_text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b eql_v3.query_text_ord_ore

Returns

Type: boolean

boolean


gte(query_smallint_ord_ore, smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


gte(smallint_ord_ore, query_smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b eql_v3.query_smallint_ord_ore

Returns

Type: boolean

boolean


gte(jsonb, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
ajsonb
b public.double_ord

Returns

Type: boolean

boolean


gte(double_ord, jsonb)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
bjsonb

Returns

Type: boolean

boolean


gte(double_ord, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
b public.double_ord

Returns

Type: boolean

boolean


gte(query_timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


gte(timestamp_ord_ope, query_timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b eql_v3.query_timestamp_ord_ope

Returns

Type: boolean

boolean


gte(query_integer_ord, integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


gte(integer_ord, query_integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b eql_v3.query_integer_ord

Returns

Type: boolean

boolean


gte(query_integer_ord_ope, integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


gte(integer_ord_ope, query_integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b eql_v3.query_integer_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ope

Returns

Type: boolean

boolean


gte(bigint_ord_ope, jsonb)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
bjsonb

Returns

Type: boolean

boolean


gte(bigint_ord_ope, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


gte(query_text_ord_ope, text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


gte(text_ord_ope, query_text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b eql_v3.query_text_ord_ope

Returns

Type: boolean

boolean


gte(query_smallint_ord, smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


gte(smallint_ord, query_smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b eql_v3.query_smallint_ord

Returns

Type: boolean

boolean


gte(query_numeric_ord, numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


gte(numeric_ord, query_numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b eql_v3.query_numeric_ord

Returns

Type: boolean

boolean


gte(query_timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


gte(timestamp_ord_ore, query_timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b eql_v3.query_timestamp_ord_ore

Returns

Type: boolean

boolean


gte(jsonb, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord

Returns

Type: boolean

boolean


gte(integer_ord, jsonb)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
bjsonb

Returns

Type: boolean

boolean


gte(integer_ord, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


gte(query_timestamp_ord, timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


gte(timestamp_ord, query_timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b eql_v3.query_timestamp_ord

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
ajsonb
b public.text_search

Returns

Type: boolean

boolean


gte(text_search, jsonb)

Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
bjsonb

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
b public.text_search

Returns

Type: boolean

boolean


gte(jsonb, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord

Returns

Type: boolean

boolean


gte(timestamp_ord, jsonb)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
bjsonb

Returns

Type: boolean

boolean


gte(timestamp_ord, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


gte(query_bigint_ord_ope, bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


gte(bigint_ord_ope, query_bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b eql_v3.query_bigint_ord_ope

Returns

Type: boolean

boolean


gte(query_real_ord_ope, real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


gte(real_ord_ope, query_real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b eql_v3.query_real_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord

Returns

Type: boolean

boolean


gte(numeric_ord, jsonb)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
bjsonb

Returns

Type: boolean

boolean


gte(numeric_ord, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


gte(jsonb, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ope

Returns

Type: boolean

boolean


gte(date_ord_ope, jsonb)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
bjsonb

Returns

Type: boolean

boolean


gte(date_ord_ope, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


gte(query_double_ord_ore, double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


gte(double_ord_ore, query_double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b eql_v3.query_double_ord_ore

Returns

Type: boolean

boolean


gte(jsonb, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ore

Returns

Type: boolean

boolean


gte(double_ord_ore, jsonb)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
bjsonb

Returns

Type: boolean

boolean


gte(double_ord_ore, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


gte(query_double_ord, double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a eql_v3.query_double_ord
b public.double_ord

Returns

Type: boolean

boolean


gte(double_ord, query_double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a public.double_ord
b eql_v3.query_double_ord

Returns

Type: boolean

boolean


gte(query_real_ord_ore, real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


gte(real_ord_ore, query_real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b eql_v3.query_real_ord_ore

Returns

Type: boolean

boolean


gte(query_date_ord_ope, date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


gte(date_ord_ope, query_date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b eql_v3.query_date_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


gte(timestamp_ord_ope, jsonb)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
bjsonb

Returns

Type: boolean

boolean


gte(timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


gte(jsonb, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ore

Returns

Type: boolean

boolean


gte(date_ord_ore, jsonb)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
bjsonb

Returns

Type: boolean

boolean


gte(date_ord_ore, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


gte(query_numeric_ord_ope, numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


gte(numeric_ord_ope, query_numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b eql_v3.query_numeric_ord_ope

Returns

Type: boolean

boolean


gte(query_bigint_ord, bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


gte(bigint_ord, query_bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b eql_v3.query_bigint_ord

Returns

Type: boolean

boolean


has_ore_cllw(jsonb_entry)

Check if a ste_vec entry contains a CLLW ORE index term.

Parameters

NameTypeDescription
entry public.jsonb_entry

Returns

Type: boolean

boolean True if oc is present and non-null.


jsonb_array(jsonb)

Extract deterministic search fields (s, hm, oc, op) per sv element.

Excludes non-deterministic ciphertext so PostgreSQL's native jsonb @> can compare for containment. Use for GIN indexes and containment queries.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload

Returns

Type: jsonb[]

jsonb[] Array of objects with only deterministic fields.


jsonb_array_elements(jsonb)

Extract elements of an encrypted JSONB array as rows.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload (must have a flag true).

Returns

Type: SETOF

SETOF public.jsonb_entry One row per element (metadata preserved).

Exceptions

  • 'cannot extract elements from non-array' if not an array.

jsonb_array_elements_text(jsonb)

Extract elements of an encrypted JSONB array as ciphertext text.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload (must have a flag true).

Returns

Type: SETOF

SETOF text One ciphertext per element.

Exceptions

  • 'cannot extract elements from non-array' if not an array.

jsonb_array_length(jsonb)

Get the length of an encrypted JSONB array.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload (must have a flag true).

Returns

Type: integer

integer Number of elements.

Exceptions

  • 'cannot get array length of a non-array' if not an array.

jsonb_contained_by(jsonb, jsonb)

GIN-indexable "is contained by" check.

Parameters

NameTypeDescription
ajsonbPayload to check.
bjsonbContainer payload.

Returns

Type: boolean

boolean True if all elements of a are contained in b.

Note

Public raw-jsonb[] reverse-containment helper — the function-form entrypoint for <@ on platforms without operator support. The typed public.json <@ operator binds to eql_v3.ste_vec_contains instead, but both agree on the result.


jsonb_contains(jsonb, jsonb)

GIN-indexable containment check: does a contain all of b?

Parameters

NameTypeDescription
ajsonbContainer payload.
bjsonbSearch payload.

Returns

Type: boolean

boolean True if a contains all deterministic elements of b.

Note

Public raw-jsonb[] containment helper over the extracted deterministic fields — the function-form entrypoint for containment on platforms without operator support (Supabase/PostgREST). The typed public.json @> operator does NOT call this function — it binds to eql_v3.ste_vec_contains instead — but both agree on the result (a parity test pins this). Also the documented GIN index expression (eql_v3.jsonb_array(col)); see docs/reference/database-indexes.md.


jsonb_path_exists(jsonb, text)

Check if a selector path exists in encrypted JSONB.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload.
selectortextSelector hash to test.

Returns

Type: boolean

boolean True if a matching element exists.


jsonb_path_query(jsonb, text)

Query encrypted JSONB for sv elements matching selector.

Returns one jsonb_entry row per matching encrypted element. Returns empty set on no match. It deliberately does not wrap multiple matches as an public.json document, because the root document domain requires an sv array and single leaves belong to public.jsonb_entry.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload with sv.
selectortextSelector hash (s value).

Returns

Type: SETOF

SETOF public.jsonb_entry Matching encrypted entries.

Variants

  • eql_v3.jsonb_path_query_first

jsonb_path_query_first(jsonb, text)

Get the first sv element matching selector, or NULL.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload.
selectortextSelector hash to match.

Returns

Type: public.jsonb_entry

public.jsonb_entry First matching element or NULL.


lt(jsonb, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ore

Returns

Type: boolean

boolean


lt(smallint_ord_ore, jsonb)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
bjsonb

Returns

Type: boolean

boolean


lt(smallint_ord_ore, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


lt(query_bigint_ord_ore, bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


lt(bigint_ord_ore, query_bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b eql_v3.query_bigint_ord_ore

Returns

Type: boolean

boolean


lt(jsonb, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ore

Returns

Type: boolean

boolean


lt(bigint_ord_ore, jsonb)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
bjsonb

Returns

Type: boolean

boolean


lt(bigint_ord_ore, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


lt(query_date_ord_ore, date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


lt(date_ord_ore, query_date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b eql_v3.query_date_ord_ore

Returns

Type: boolean

boolean


lt(jsonb, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
ajsonb
b public.text_ord

Returns

Type: boolean

boolean


lt(text_ord, jsonb)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
bjsonb

Returns

Type: boolean

boolean


lt(text_ord, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
b public.text_ord

Returns

Type: boolean

boolean


lt(jsonb, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
ajsonb
b public.date_ord

Returns

Type: boolean

boolean


lt(date_ord, jsonb)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
bjsonb

Returns

Type: boolean

boolean


lt(date_ord, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
b public.date_ord

Returns

Type: boolean

boolean


lt(jsonb, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ore

Returns

Type: boolean

boolean


lt(integer_ord_ore, jsonb)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
bjsonb

Returns

Type: boolean

boolean


lt(integer_ord_ore, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search
b public.text_search

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a public.text_search
b eql_v3.query_text_search

Returns

Type: boolean

boolean


lt(query_smallint_ord_ope, smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


lt(smallint_ord_ope, query_smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b eql_v3.query_smallint_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
ajsonb
b public.real_ord

Returns

Type: boolean

boolean


lt(real_ord, jsonb)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
bjsonb

Returns

Type: boolean

boolean


lt(real_ord, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
b public.real_ord

Returns

Type: boolean

boolean


lt(jsonb, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ope

Returns

Type: boolean

boolean


lt(text_ord_ope, jsonb)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
bjsonb

Returns

Type: boolean

boolean


lt(text_ord_ope, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord

Returns

Type: boolean

boolean


lt(smallint_ord, jsonb)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
bjsonb

Returns

Type: boolean

boolean


lt(smallint_ord, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


lt(query_text_ord, text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a eql_v3.query_text_ord
b public.text_ord

Returns

Type: boolean

boolean


lt(text_ord, query_text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a public.text_ord
b eql_v3.query_text_ord

Returns

Type: boolean

boolean


lt(query_double_ord_ope, double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


lt(double_ord_ope, query_double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b eql_v3.query_double_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ope

Returns

Type: boolean

boolean


lt(double_ord_ope, jsonb)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
bjsonb

Returns

Type: boolean

boolean


lt(double_ord_ope, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ope

Returns

Type: boolean

boolean


lt(real_ord_ope, jsonb)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
bjsonb

Returns

Type: boolean

boolean


lt(real_ord_ope, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ope

Returns

Type: boolean

boolean


lt(integer_ord_ope, jsonb)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
bjsonb

Returns

Type: boolean

boolean


lt(integer_ord_ope, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ope

Returns

Type: boolean

boolean


lt(smallint_ord_ope, jsonb)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
bjsonb

Returns

Type: boolean

boolean


lt(smallint_ord_ope, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


lt(timestamp_ord_ore, jsonb)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
bjsonb

Returns

Type: boolean

boolean


lt(timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


lt(jsonb, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ope

Returns

Type: boolean

boolean


lt(numeric_ord_ope, jsonb)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
bjsonb

Returns

Type: boolean

boolean


lt(numeric_ord_ope, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


lt(query_date_ord, date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a eql_v3.query_date_ord
b public.date_ord

Returns

Type: boolean

boolean


lt(date_ord, query_date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a public.date_ord
b eql_v3.query_date_ord

Returns

Type: boolean

boolean


lt(query_numeric_ord_ore, numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


lt(numeric_ord_ore, query_numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b eql_v3.query_numeric_ord_ore

Returns

Type: boolean

boolean


lt(query_real_ord, real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a eql_v3.query_real_ord
b public.real_ord

Returns

Type: boolean

boolean


lt(real_ord, query_real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a public.real_ord
b eql_v3.query_real_ord

Returns

Type: boolean

boolean


lt(jsonb, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ore

Returns

Type: boolean

boolean


lt(text_ord_ore, jsonb)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
bjsonb

Returns

Type: boolean

boolean


lt(text_ord_ore, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


lt(jsonb, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord

Returns

Type: boolean

boolean


lt(bigint_ord, jsonb)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
bjsonb

Returns

Type: boolean

boolean


lt(bigint_ord, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


lt(query_integer_ord_ore, integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


lt(integer_ord_ore, query_integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b eql_v3.query_integer_ord_ore

Returns

Type: boolean

boolean


lt(jsonb, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ore

Returns

Type: boolean

boolean


lt(numeric_ord_ore, jsonb)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
bjsonb

Returns

Type: boolean

boolean


lt(numeric_ord_ore, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


lt(jsonb, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ore

Returns

Type: boolean

boolean


lt(real_ord_ore, jsonb)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
bjsonb

Returns

Type: boolean

boolean


lt(real_ord_ore, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


lt(query_text_ord_ore, text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


lt(text_ord_ore, query_text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b eql_v3.query_text_ord_ore

Returns

Type: boolean

boolean


lt(query_smallint_ord_ore, smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


lt(smallint_ord_ore, query_smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b eql_v3.query_smallint_ord_ore

Returns

Type: boolean

boolean


lt(jsonb, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
ajsonb
b public.double_ord

Returns

Type: boolean

boolean


lt(double_ord, jsonb)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
bjsonb

Returns

Type: boolean

boolean


lt(double_ord, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
b public.double_ord

Returns

Type: boolean

boolean


lt(query_timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


lt(timestamp_ord_ope, query_timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b eql_v3.query_timestamp_ord_ope

Returns

Type: boolean

boolean


lt(query_integer_ord, integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


lt(integer_ord, query_integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b eql_v3.query_integer_ord

Returns

Type: boolean

boolean


lt(query_integer_ord_ope, integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


lt(integer_ord_ope, query_integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b eql_v3.query_integer_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ope

Returns

Type: boolean

boolean


lt(bigint_ord_ope, jsonb)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
bjsonb

Returns

Type: boolean

boolean


lt(bigint_ord_ope, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


lt(query_text_ord_ope, text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


lt(text_ord_ope, query_text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b eql_v3.query_text_ord_ope

Returns

Type: boolean

boolean


lt(query_smallint_ord, smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


lt(smallint_ord, query_smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b eql_v3.query_smallint_ord

Returns

Type: boolean

boolean


lt(query_numeric_ord, numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


lt(numeric_ord, query_numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b eql_v3.query_numeric_ord

Returns

Type: boolean

boolean


lt(query_timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


lt(timestamp_ord_ore, query_timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b eql_v3.query_timestamp_ord_ore

Returns

Type: boolean

boolean


lt(jsonb, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord

Returns

Type: boolean

boolean


lt(integer_ord, jsonb)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
bjsonb

Returns

Type: boolean

boolean


lt(integer_ord, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


lt(query_timestamp_ord, timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


lt(timestamp_ord, query_timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b eql_v3.query_timestamp_ord

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
ajsonb
b public.text_search

Returns

Type: boolean

boolean


lt(text_search, jsonb)

Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
bjsonb

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
b public.text_search

Returns

Type: boolean

boolean


lt(jsonb, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord

Returns

Type: boolean

boolean


lt(timestamp_ord, jsonb)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
bjsonb

Returns

Type: boolean

boolean


lt(timestamp_ord, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


lt(query_bigint_ord_ope, bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


lt(bigint_ord_ope, query_bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b eql_v3.query_bigint_ord_ope

Returns

Type: boolean

boolean


lt(query_real_ord_ope, real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


lt(real_ord_ope, query_real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b eql_v3.query_real_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord

Returns

Type: boolean

boolean


lt(numeric_ord, jsonb)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
bjsonb

Returns

Type: boolean

boolean


lt(numeric_ord, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


lt(jsonb, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ope

Returns

Type: boolean

boolean


lt(date_ord_ope, jsonb)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
bjsonb

Returns

Type: boolean

boolean


lt(date_ord_ope, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


lt(query_double_ord_ore, double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


lt(double_ord_ore, query_double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b eql_v3.query_double_ord_ore

Returns

Type: boolean

boolean


lt(jsonb, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ore

Returns

Type: boolean

boolean


lt(double_ord_ore, jsonb)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
bjsonb

Returns

Type: boolean

boolean


lt(double_ord_ore, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


lt(query_double_ord, double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a eql_v3.query_double_ord
b public.double_ord

Returns

Type: boolean

boolean


lt(double_ord, query_double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a public.double_ord
b eql_v3.query_double_ord

Returns

Type: boolean

boolean


lt(query_real_ord_ore, real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


lt(real_ord_ore, query_real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b eql_v3.query_real_ord_ore

Returns

Type: boolean

boolean


lt(query_date_ord_ope, date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


lt(date_ord_ope, query_date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b eql_v3.query_date_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


lt(timestamp_ord_ope, jsonb)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
bjsonb

Returns

Type: boolean

boolean


lt(timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


lt(jsonb, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ore

Returns

Type: boolean

boolean


lt(date_ord_ore, jsonb)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
bjsonb

Returns

Type: boolean

boolean


lt(date_ord_ore, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


lt(query_numeric_ord_ope, numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


lt(numeric_ord_ope, query_numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b eql_v3.query_numeric_ord_ope

Returns

Type: boolean

boolean


lt(query_bigint_ord, bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


lt(bigint_ord, query_bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b eql_v3.query_bigint_ord

Returns

Type: boolean

boolean


lte(jsonb, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ore

Returns

Type: boolean

boolean


lte(smallint_ord_ore, jsonb)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
bjsonb

Returns

Type: boolean

boolean


lte(smallint_ord_ore, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


lte(query_bigint_ord_ore, bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


lte(bigint_ord_ore, query_bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b eql_v3.query_bigint_ord_ore

Returns

Type: boolean

boolean


lte(jsonb, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ore

Returns

Type: boolean

boolean


lte(bigint_ord_ore, jsonb)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
bjsonb

Returns

Type: boolean

boolean


lte(bigint_ord_ore, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


lte(query_date_ord_ore, date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


lte(date_ord_ore, query_date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b eql_v3.query_date_ord_ore

Returns

Type: boolean

boolean


lte(jsonb, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
ajsonb
b public.text_ord

Returns

Type: boolean

boolean


lte(text_ord, jsonb)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
bjsonb

Returns

Type: boolean

boolean


lte(text_ord, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
b public.text_ord

Returns

Type: boolean

boolean


lte(jsonb, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
ajsonb
b public.date_ord

Returns

Type: boolean

boolean


lte(date_ord, jsonb)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
bjsonb

Returns

Type: boolean

boolean


lte(date_ord, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
b public.date_ord

Returns

Type: boolean

boolean


lte(jsonb, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ore

Returns

Type: boolean

boolean


lte(integer_ord_ore, jsonb)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
bjsonb

Returns

Type: boolean

boolean


lte(integer_ord_ore, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search
b public.text_search

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a public.text_search
b eql_v3.query_text_search

Returns

Type: boolean

boolean


lte(query_smallint_ord_ope, smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


lte(smallint_ord_ope, query_smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b eql_v3.query_smallint_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
ajsonb
b public.real_ord

Returns

Type: boolean

boolean


lte(real_ord, jsonb)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
bjsonb

Returns

Type: boolean

boolean


lte(real_ord, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
b public.real_ord

Returns

Type: boolean

boolean


lte(jsonb, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ope

Returns

Type: boolean

boolean


lte(text_ord_ope, jsonb)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
bjsonb

Returns

Type: boolean

boolean


lte(text_ord_ope, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord

Returns

Type: boolean

boolean


lte(smallint_ord, jsonb)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
bjsonb

Returns

Type: boolean

boolean


lte(smallint_ord, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


lte(query_text_ord, text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a eql_v3.query_text_ord
b public.text_ord

Returns

Type: boolean

boolean


lte(text_ord, query_text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a public.text_ord
b eql_v3.query_text_ord

Returns

Type: boolean

boolean


lte(query_double_ord_ope, double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


lte(double_ord_ope, query_double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b eql_v3.query_double_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ope

Returns

Type: boolean

boolean


lte(double_ord_ope, jsonb)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
bjsonb

Returns

Type: boolean

boolean


lte(double_ord_ope, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ope

Returns

Type: boolean

boolean


lte(real_ord_ope, jsonb)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
bjsonb

Returns

Type: boolean

boolean


lte(real_ord_ope, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ope

Returns

Type: boolean

boolean


lte(integer_ord_ope, jsonb)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
bjsonb

Returns

Type: boolean

boolean


lte(integer_ord_ope, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ope

Returns

Type: boolean

boolean


lte(smallint_ord_ope, jsonb)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
bjsonb

Returns

Type: boolean

boolean


lte(smallint_ord_ope, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


lte(timestamp_ord_ore, jsonb)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
bjsonb

Returns

Type: boolean

boolean


lte(timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


lte(jsonb, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ope

Returns

Type: boolean

boolean


lte(numeric_ord_ope, jsonb)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
bjsonb

Returns

Type: boolean

boolean


lte(numeric_ord_ope, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


lte(query_date_ord, date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a eql_v3.query_date_ord
b public.date_ord

Returns

Type: boolean

boolean


lte(date_ord, query_date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a public.date_ord
b eql_v3.query_date_ord

Returns

Type: boolean

boolean


lte(query_numeric_ord_ore, numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


lte(numeric_ord_ore, query_numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b eql_v3.query_numeric_ord_ore

Returns

Type: boolean

boolean


lte(query_real_ord, real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a eql_v3.query_real_ord
b public.real_ord

Returns

Type: boolean

boolean


lte(real_ord, query_real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a public.real_ord
b eql_v3.query_real_ord

Returns

Type: boolean

boolean


lte(jsonb, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ore

Returns

Type: boolean

boolean


lte(text_ord_ore, jsonb)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
bjsonb

Returns

Type: boolean

boolean


lte(text_ord_ore, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


lte(jsonb, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord

Returns

Type: boolean

boolean


lte(bigint_ord, jsonb)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
bjsonb

Returns

Type: boolean

boolean


lte(bigint_ord, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


lte(query_integer_ord_ore, integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


lte(integer_ord_ore, query_integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b eql_v3.query_integer_ord_ore

Returns

Type: boolean

boolean


lte(jsonb, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ore

Returns

Type: boolean

boolean


lte(numeric_ord_ore, jsonb)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
bjsonb

Returns

Type: boolean

boolean


lte(numeric_ord_ore, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


lte(jsonb, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ore

Returns

Type: boolean

boolean


lte(real_ord_ore, jsonb)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
bjsonb

Returns

Type: boolean

boolean


lte(real_ord_ore, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


lte(query_text_ord_ore, text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


lte(text_ord_ore, query_text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b eql_v3.query_text_ord_ore

Returns

Type: boolean

boolean


lte(query_smallint_ord_ore, smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


lte(smallint_ord_ore, query_smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b eql_v3.query_smallint_ord_ore

Returns

Type: boolean

boolean


lte(jsonb, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
ajsonb
b public.double_ord

Returns

Type: boolean

boolean


lte(double_ord, jsonb)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
bjsonb

Returns

Type: boolean

boolean


lte(double_ord, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
b public.double_ord

Returns

Type: boolean

boolean


lte(query_timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


lte(timestamp_ord_ope, query_timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b eql_v3.query_timestamp_ord_ope

Returns

Type: boolean

boolean


lte(query_integer_ord, integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


lte(integer_ord, query_integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b eql_v3.query_integer_ord

Returns

Type: boolean

boolean


lte(query_integer_ord_ope, integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


lte(integer_ord_ope, query_integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b eql_v3.query_integer_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ope

Returns

Type: boolean

boolean


lte(bigint_ord_ope, jsonb)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
bjsonb

Returns

Type: boolean

boolean


lte(bigint_ord_ope, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


lte(query_text_ord_ope, text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


lte(text_ord_ope, query_text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b eql_v3.query_text_ord_ope

Returns

Type: boolean

boolean


lte(query_smallint_ord, smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


lte(smallint_ord, query_smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b eql_v3.query_smallint_ord

Returns

Type: boolean

boolean


lte(query_numeric_ord, numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


lte(numeric_ord, query_numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b eql_v3.query_numeric_ord

Returns

Type: boolean

boolean


lte(query_timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


lte(timestamp_ord_ore, query_timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b eql_v3.query_timestamp_ord_ore

Returns

Type: boolean

boolean


lte(jsonb, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord

Returns

Type: boolean

boolean


lte(integer_ord, jsonb)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
bjsonb

Returns

Type: boolean

boolean


lte(integer_ord, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


lte(query_timestamp_ord, timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


lte(timestamp_ord, query_timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b eql_v3.query_timestamp_ord

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
ajsonb
b public.text_search

Returns

Type: boolean

boolean


lte(text_search, jsonb)

Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
bjsonb

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
b public.text_search

Returns

Type: boolean

boolean


lte(jsonb, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord

Returns

Type: boolean

boolean


lte(timestamp_ord, jsonb)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
bjsonb

Returns

Type: boolean

boolean


lte(timestamp_ord, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


lte(query_bigint_ord_ope, bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


lte(bigint_ord_ope, query_bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b eql_v3.query_bigint_ord_ope

Returns

Type: boolean

boolean


lte(query_real_ord_ope, real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


lte(real_ord_ope, query_real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b eql_v3.query_real_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord

Returns

Type: boolean

boolean


lte(numeric_ord, jsonb)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
bjsonb

Returns

Type: boolean

boolean


lte(numeric_ord, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


lte(jsonb, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ope

Returns

Type: boolean

boolean


lte(date_ord_ope, jsonb)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
bjsonb

Returns

Type: boolean

boolean


lte(date_ord_ope, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


lte(query_double_ord_ore, double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


lte(double_ord_ore, query_double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b eql_v3.query_double_ord_ore

Returns

Type: boolean

boolean


lte(jsonb, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ore

Returns

Type: boolean

boolean


lte(double_ord_ore, jsonb)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
bjsonb

Returns

Type: boolean

boolean


lte(double_ord_ore, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


lte(query_double_ord, double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a eql_v3.query_double_ord
b public.double_ord

Returns

Type: boolean

boolean


lte(double_ord, query_double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a public.double_ord
b eql_v3.query_double_ord

Returns

Type: boolean

boolean


lte(query_real_ord_ore, real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


lte(real_ord_ore, query_real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b eql_v3.query_real_ord_ore

Returns

Type: boolean

boolean


lte(query_date_ord_ope, date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


lte(date_ord_ope, query_date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b eql_v3.query_date_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


lte(timestamp_ord_ope, jsonb)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
bjsonb

Returns

Type: boolean

boolean


lte(timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


lte(jsonb, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ore

Returns

Type: boolean

boolean


lte(date_ord_ore, jsonb)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
bjsonb

Returns

Type: boolean

boolean


lte(date_ord_ore, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


lte(query_numeric_ord_ope, numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


lte(numeric_ord_ope, query_numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b eql_v3.query_numeric_ord_ope

Returns

Type: boolean

boolean


lte(query_bigint_ord, bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


lte(bigint_ord, query_bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b eql_v3.query_bigint_ord

Returns

Type: boolean

boolean


Index extractor for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search

Returns

Type: eql_v3_internal.bloom_filter

eql_v3_internal.bloom_filter


match_term(text_match)

Index extractor for public.text_match.

Parameters

NameTypeDescription
a public.text_match

Returns

Type: eql_v3_internal.bloom_filter

eql_v3_internal.bloom_filter


match_term(query_text_match)

Index extractor for eql_v3.query_text_match.

Parameters

NameTypeDescription
a eql_v3.query_text_match

Returns

Type: eql_v3_internal.bloom_filter

eql_v3_internal.bloom_filter


Index extractor for public.text_search.

Parameters

NameTypeDescription
a public.text_search

Returns

Type: eql_v3_internal.bloom_filter

eql_v3_internal.bloom_filter


max(text_ord_ore)

max aggregate for public.text_ord_ore.

Parameters

NameTypeDescription
public.text_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.text_ord_ore


max(double_ord_ore)

max aggregate for public.double_ord_ore.

Parameters

NameTypeDescription
public.double_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.double_ord_ore


max(timestamp_ord_ope)

max aggregate for public.timestamp_ord_ope.

Parameters

NameTypeDescription
public.timestamp_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.timestamp_ord_ope


max(text_ord_ope)

max aggregate for public.text_ord_ope.

Parameters

NameTypeDescription
public.text_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.text_ord_ope


max(text_ord)

max aggregate for public.text_ord.

Parameters

NameTypeDescription
public.text_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.text_ord


max(real_ord_ope)

max aggregate for public.real_ord_ope.

Parameters

NameTypeDescription
public.real_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.real_ord_ope


max(smallint_ord_ore)

max aggregate for public.smallint_ord_ore.

Parameters

NameTypeDescription
public.smallint_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.smallint_ord_ore


max(bigint_ord_ore)

max aggregate for public.bigint_ord_ore.

Parameters

NameTypeDescription
public.bigint_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.bigint_ord_ore


max(numeric_ord_ore)

max aggregate for public.numeric_ord_ore.

Parameters

NameTypeDescription
public.numeric_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.numeric_ord_ore


max aggregate for public.text_search.

Parameters

NameTypeDescription
public.text_search

Returns

Type: CREATE AGGREGATE eql_v3

public.text_search


max(double_ord_ope)

max aggregate for public.double_ord_ope.

Parameters

NameTypeDescription
public.double_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.double_ord_ope


max(date_ord_ope)

max aggregate for public.date_ord_ope.

Parameters

NameTypeDescription
public.date_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.date_ord_ope


max(timestamp_ord)

max aggregate for public.timestamp_ord.

Parameters

NameTypeDescription
public.timestamp_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.timestamp_ord


max(jsonb_entry)

max aggregate over public.jsonb_entry.

Parameters

NameTypeDescription
public.jsonb_entry

Returns

Type: CREATE AGGREGATE eql_v3

public.jsonb_entry The entry with the largest CLLW ORE term.


max(date_ord_ore)

max aggregate for public.date_ord_ore.

Parameters

NameTypeDescription
public.date_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.date_ord_ore


max(real_ord_ore)

max aggregate for public.real_ord_ore.

Parameters

NameTypeDescription
public.real_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.real_ord_ore


max(integer_ord)

max aggregate for public.integer_ord.

Parameters

NameTypeDescription
public.integer_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.integer_ord


max(smallint_ord_ope)

max aggregate for public.smallint_ord_ope.

Parameters

NameTypeDescription
public.smallint_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.smallint_ord_ope


max(timestamp_ord_ore)

max aggregate for public.timestamp_ord_ore.

Parameters

NameTypeDescription
public.timestamp_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.timestamp_ord_ore


max(integer_ord_ope)

max aggregate for public.integer_ord_ope.

Parameters

NameTypeDescription
public.integer_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.integer_ord_ope


max(integer_ord_ore)

max aggregate for public.integer_ord_ore.

Parameters

NameTypeDescription
public.integer_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.integer_ord_ore


max(double_ord)

max aggregate for public.double_ord.

Parameters

NameTypeDescription
public.double_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.double_ord


max(date_ord)

max aggregate for public.date_ord.

Parameters

NameTypeDescription
public.date_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.date_ord


max(bigint_ord_ope)

max aggregate for public.bigint_ord_ope.

Parameters

NameTypeDescription
public.bigint_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.bigint_ord_ope


max(bigint_ord)

max aggregate for public.bigint_ord.

Parameters

NameTypeDescription
public.bigint_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.bigint_ord


max(numeric_ord_ope)

max aggregate for public.numeric_ord_ope.

Parameters

NameTypeDescription
public.numeric_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.numeric_ord_ope


max(smallint_ord)

max aggregate for public.smallint_ord.

Parameters

NameTypeDescription
public.smallint_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.smallint_ord


max(real_ord)

max aggregate for public.real_ord.

Parameters

NameTypeDescription
public.real_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.real_ord


max(numeric_ord)

max aggregate for public.numeric_ord.

Parameters

NameTypeDescription
public.numeric_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.numeric_ord


meta_data(jsonb)

Extract metadata (i, v) from a raw jsonb encrypted value.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload

Returns

Type: jsonb

jsonb Metadata object with i and v fields.


min(text_ord_ore)

min aggregate for public.text_ord_ore.

Parameters

NameTypeDescription
public.text_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.text_ord_ore


min(double_ord_ore)

min aggregate for public.double_ord_ore.

Parameters

NameTypeDescription
public.double_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.double_ord_ore


min(timestamp_ord_ope)

min aggregate for public.timestamp_ord_ope.

Parameters

NameTypeDescription
public.timestamp_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.timestamp_ord_ope


min(text_ord_ope)

min aggregate for public.text_ord_ope.

Parameters

NameTypeDescription
public.text_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.text_ord_ope


min(text_ord)

min aggregate for public.text_ord.

Parameters

NameTypeDescription
public.text_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.text_ord


min(real_ord_ope)

min aggregate for public.real_ord_ope.

Parameters

NameTypeDescription
public.real_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.real_ord_ope


min(smallint_ord_ore)

min aggregate for public.smallint_ord_ore.

Parameters

NameTypeDescription
public.smallint_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.smallint_ord_ore


min(bigint_ord_ore)

min aggregate for public.bigint_ord_ore.

Parameters

NameTypeDescription
public.bigint_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.bigint_ord_ore


min(numeric_ord_ore)

min aggregate for public.numeric_ord_ore.

Parameters

NameTypeDescription
public.numeric_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.numeric_ord_ore


min aggregate for public.text_search.

Parameters

NameTypeDescription
public.text_search

Returns

Type: CREATE AGGREGATE eql_v3

public.text_search


min(double_ord_ope)

min aggregate for public.double_ord_ope.

Parameters

NameTypeDescription
public.double_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.double_ord_ope


min(date_ord_ope)

min aggregate for public.date_ord_ope.

Parameters

NameTypeDescription
public.date_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.date_ord_ope


min(timestamp_ord)

min aggregate for public.timestamp_ord.

Parameters

NameTypeDescription
public.timestamp_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.timestamp_ord


min(jsonb_entry)

min aggregate over public.jsonb_entry.

Parameters

NameTypeDescription
public.jsonb_entry

Returns

Type: CREATE AGGREGATE eql_v3

public.jsonb_entry The entry with the smallest CLLW ORE term.


min(date_ord_ore)

min aggregate for public.date_ord_ore.

Parameters

NameTypeDescription
public.date_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.date_ord_ore


min(real_ord_ore)

min aggregate for public.real_ord_ore.

Parameters

NameTypeDescription
public.real_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.real_ord_ore


min(integer_ord)

min aggregate for public.integer_ord.

Parameters

NameTypeDescription
public.integer_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.integer_ord


min(smallint_ord_ope)

min aggregate for public.smallint_ord_ope.

Parameters

NameTypeDescription
public.smallint_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.smallint_ord_ope


min(timestamp_ord_ore)

min aggregate for public.timestamp_ord_ore.

Parameters

NameTypeDescription
public.timestamp_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.timestamp_ord_ore


min(integer_ord_ope)

min aggregate for public.integer_ord_ope.

Parameters

NameTypeDescription
public.integer_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.integer_ord_ope


min(integer_ord_ore)

min aggregate for public.integer_ord_ore.

Parameters

NameTypeDescription
public.integer_ord_ore

Returns

Type: CREATE AGGREGATE eql_v3

public.integer_ord_ore


min(double_ord)

min aggregate for public.double_ord.

Parameters

NameTypeDescription
public.double_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.double_ord


min(date_ord)

min aggregate for public.date_ord.

Parameters

NameTypeDescription
public.date_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.date_ord


min(bigint_ord_ope)

min aggregate for public.bigint_ord_ope.

Parameters

NameTypeDescription
public.bigint_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.bigint_ord_ope


min(bigint_ord)

min aggregate for public.bigint_ord.

Parameters

NameTypeDescription
public.bigint_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.bigint_ord


min(numeric_ord_ope)

min aggregate for public.numeric_ord_ope.

Parameters

NameTypeDescription
public.numeric_ord_ope

Returns

Type: CREATE AGGREGATE eql_v3

public.numeric_ord_ope


min(smallint_ord)

min aggregate for public.smallint_ord.

Parameters

NameTypeDescription
public.smallint_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.smallint_ord


min(real_ord)

min aggregate for public.real_ord.

Parameters

NameTypeDescription
public.real_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.real_ord


min(numeric_ord)

min aggregate for public.numeric_ord.

Parameters

NameTypeDescription
public.numeric_ord

Returns

Type: CREATE AGGREGATE eql_v3

public.numeric_ord


neq(jsonb, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ore

Returns

Type: boolean

boolean


neq(smallint_ord_ore, jsonb)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
bjsonb

Returns

Type: boolean

boolean


neq(smallint_ord_ore, smallint_ord_ore)

Operator wrapper for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


neq(query_bigint_ord_ore, bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


neq(bigint_ord_ore, query_bigint_ord_ore)

Operator wrapper for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b eql_v3.query_bigint_ord_ore

Returns

Type: boolean

boolean


neq(jsonb, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ore

Returns

Type: boolean

boolean


neq(bigint_ord_ore, jsonb)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
bjsonb

Returns

Type: boolean

boolean


neq(bigint_ord_ore, bigint_ord_ore)

Operator wrapper for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


neq(jsonb, real_eq)

Operator wrapper for public.real_eq.

Parameters

NameTypeDescription
ajsonb
b public.real_eq

Returns

Type: boolean

boolean


neq(real_eq, jsonb)

Operator wrapper for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
bjsonb

Returns

Type: boolean

boolean


neq(real_eq, real_eq)

Operator wrapper for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
b public.real_eq

Returns

Type: boolean

boolean


neq(query_date_ord_ore, date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


neq(date_ord_ore, query_date_ord_ore)

Operator wrapper for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b eql_v3.query_date_ord_ore

Returns

Type: boolean

boolean


neq(jsonb, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
ajsonb
b public.text_ord

Returns

Type: boolean

boolean


neq(text_ord, jsonb)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
bjsonb

Returns

Type: boolean

boolean


neq(text_ord, text_ord)

Operator wrapper for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
b public.text_ord

Returns

Type: boolean

boolean


neq(jsonb, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
ajsonb
b public.date_ord

Returns

Type: boolean

boolean


neq(date_ord, jsonb)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
bjsonb

Returns

Type: boolean

boolean


neq(date_ord, date_ord)

Operator wrapper for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
b public.date_ord

Returns

Type: boolean

boolean


neq(jsonb, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ore

Returns

Type: boolean

boolean


neq(integer_ord_ore, jsonb)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
bjsonb

Returns

Type: boolean

boolean


neq(integer_ord_ore, integer_ord_ore)

Operator wrapper for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search
b public.text_search

Returns

Type: boolean

boolean


Operator wrapper for eql_v3.query_text_search.

Parameters

NameTypeDescription
a public.text_search
b eql_v3.query_text_search

Returns

Type: boolean

boolean


neq(query_smallint_ord_ope, smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


neq(smallint_ord_ope, query_smallint_ord_ope)

Operator wrapper for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b eql_v3.query_smallint_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, numeric_eq)

Operator wrapper for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
b public.numeric_eq

Returns

Type: boolean

boolean


neq(numeric_eq, jsonb)

Operator wrapper for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
bjsonb

Returns

Type: boolean

boolean


neq(numeric_eq, numeric_eq)

Operator wrapper for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


neq(jsonb, date_eq)

Operator wrapper for public.date_eq.

Parameters

NameTypeDescription
ajsonb
b public.date_eq

Returns

Type: boolean

boolean


neq(date_eq, jsonb)

Operator wrapper for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
bjsonb

Returns

Type: boolean

boolean


neq(date_eq, date_eq)

Operator wrapper for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
b public.date_eq

Returns

Type: boolean

boolean


neq(jsonb, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
ajsonb
b public.real_ord

Returns

Type: boolean

boolean


neq(real_ord, jsonb)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
bjsonb

Returns

Type: boolean

boolean


neq(real_ord, real_ord)

Operator wrapper for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
b public.real_ord

Returns

Type: boolean

boolean


neq(jsonb, timestamp_eq)

Operator wrapper for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_eq

Returns

Type: boolean

boolean


neq(timestamp_eq, jsonb)

Operator wrapper for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
bjsonb

Returns

Type: boolean

boolean


neq(timestamp_eq, timestamp_eq)

Operator wrapper for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


neq(query_bigint_eq, bigint_eq)

Operator wrapper for eql_v3.query_bigint_eq.

Parameters

NameTypeDescription
a eql_v3.query_bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


neq(bigint_eq, query_bigint_eq)

Operator wrapper for eql_v3.query_bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b eql_v3.query_bigint_eq

Returns

Type: boolean

boolean


neq(query_date_eq, date_eq)

Operator wrapper for eql_v3.query_date_eq.

Parameters

NameTypeDescription
a eql_v3.query_date_eq
b public.date_eq

Returns

Type: boolean

boolean


neq(date_eq, query_date_eq)

Operator wrapper for eql_v3.query_date_eq.

Parameters

NameTypeDescription
a public.date_eq
b eql_v3.query_date_eq

Returns

Type: boolean

boolean


neq(query_timestamp_eq, timestamp_eq)

Operator wrapper for eql_v3.query_timestamp_eq.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


neq(timestamp_eq, query_timestamp_eq)

Operator wrapper for eql_v3.query_timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b eql_v3.query_timestamp_eq

Returns

Type: boolean

boolean


neq(jsonb, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ope

Returns

Type: boolean

boolean


neq(text_ord_ope, jsonb)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
bjsonb

Returns

Type: boolean

boolean


neq(text_ord_ope, text_ord_ope)

Operator wrapper for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, double_eq)

Operator wrapper for public.double_eq.

Parameters

NameTypeDescription
ajsonb
b public.double_eq

Returns

Type: boolean

boolean


neq(double_eq, jsonb)

Operator wrapper for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
bjsonb

Returns

Type: boolean

boolean


neq(double_eq, double_eq)

Operator wrapper for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
b public.double_eq

Returns

Type: boolean

boolean


neq(jsonb, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord

Returns

Type: boolean

boolean


neq(smallint_ord, jsonb)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
bjsonb

Returns

Type: boolean

boolean


neq(smallint_ord, smallint_ord)

Operator wrapper for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


neq(query_text_ord, text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a eql_v3.query_text_ord
b public.text_ord

Returns

Type: boolean

boolean


neq(text_ord, query_text_ord)

Operator wrapper for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a public.text_ord
b eql_v3.query_text_ord

Returns

Type: boolean

boolean


neq(query_double_ord_ope, double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


neq(double_ord_ope, query_double_ord_ope)

Operator wrapper for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b eql_v3.query_double_ord_ope

Returns

Type: boolean

boolean


neq(query_numeric_eq, numeric_eq)

Operator wrapper for eql_v3.query_numeric_eq.

Parameters

NameTypeDescription
a eql_v3.query_numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


neq(numeric_eq, query_numeric_eq)

Operator wrapper for eql_v3.query_numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b eql_v3.query_numeric_eq

Returns

Type: boolean

boolean


neq(jsonb, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ope

Returns

Type: boolean

boolean


neq(double_ord_ope, jsonb)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
bjsonb

Returns

Type: boolean

boolean


neq(double_ord_ope, double_ord_ope)

Operator wrapper for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ope

Returns

Type: boolean

boolean


neq(real_ord_ope, jsonb)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
bjsonb

Returns

Type: boolean

boolean


neq(real_ord_ope, real_ord_ope)

Operator wrapper for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ope

Returns

Type: boolean

boolean


neq(integer_ord_ope, jsonb)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
bjsonb

Returns

Type: boolean

boolean


neq(integer_ord_ope, integer_ord_ope)

Operator wrapper for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ope

Returns

Type: boolean

boolean


neq(smallint_ord_ope, jsonb)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
bjsonb

Returns

Type: boolean

boolean


neq(smallint_ord_ope, smallint_ord_ope)

Operator wrapper for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


neq(query_text_eq, text_eq)

Operator wrapper for eql_v3.query_text_eq.

Parameters

NameTypeDescription
a eql_v3.query_text_eq
b public.text_eq

Returns

Type: boolean

boolean


neq(text_eq, query_text_eq)

Operator wrapper for eql_v3.query_text_eq.

Parameters

NameTypeDescription
a public.text_eq
b eql_v3.query_text_eq

Returns

Type: boolean

boolean


neq(jsonb, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


neq(timestamp_ord_ore, jsonb)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
bjsonb

Returns

Type: boolean

boolean


neq(timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


neq(jsonb, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ope

Returns

Type: boolean

boolean


neq(numeric_ord_ope, jsonb)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
bjsonb

Returns

Type: boolean

boolean


neq(numeric_ord_ope, numeric_ord_ope)

Operator wrapper for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, text_eq)

Operator wrapper for public.text_eq.

Parameters

NameTypeDescription
ajsonb
b public.text_eq

Returns

Type: boolean

boolean


neq(text_eq, jsonb)

Operator wrapper for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
bjsonb

Returns

Type: boolean

boolean


neq(text_eq, text_eq)

Operator wrapper for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
b public.text_eq

Returns

Type: boolean

boolean


neq(query_integer_eq, integer_eq)

Operator wrapper for eql_v3.query_integer_eq.

Parameters

NameTypeDescription
a eql_v3.query_integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


neq(integer_eq, query_integer_eq)

Operator wrapper for eql_v3.query_integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b eql_v3.query_integer_eq

Returns

Type: boolean

boolean


neq(query_date_ord, date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a eql_v3.query_date_ord
b public.date_ord

Returns

Type: boolean

boolean


neq(date_ord, query_date_ord)

Operator wrapper for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a public.date_ord
b eql_v3.query_date_ord

Returns

Type: boolean

boolean


neq(query_numeric_ord_ore, numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


neq(numeric_ord_ore, query_numeric_ord_ore)

Operator wrapper for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b eql_v3.query_numeric_ord_ore

Returns

Type: boolean

boolean


neq(query_real_ord, real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a eql_v3.query_real_ord
b public.real_ord

Returns

Type: boolean

boolean


neq(real_ord, query_real_ord)

Operator wrapper for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a public.real_ord
b eql_v3.query_real_ord

Returns

Type: boolean

boolean


neq(jsonb, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ore

Returns

Type: boolean

boolean


neq(text_ord_ore, jsonb)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
bjsonb

Returns

Type: boolean

boolean


neq(text_ord_ore, text_ord_ore)

Operator wrapper for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


neq(query_double_eq, double_eq)

Operator wrapper for eql_v3.query_double_eq.

Parameters

NameTypeDescription
a eql_v3.query_double_eq
b public.double_eq

Returns

Type: boolean

boolean


neq(double_eq, query_double_eq)

Operator wrapper for eql_v3.query_double_eq.

Parameters

NameTypeDescription
a public.double_eq
b eql_v3.query_double_eq

Returns

Type: boolean

boolean


neq(jsonb, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord

Returns

Type: boolean

boolean


neq(bigint_ord, jsonb)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
bjsonb

Returns

Type: boolean

boolean


neq(bigint_ord, bigint_ord)

Operator wrapper for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


neq(query_integer_ord_ore, integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


neq(integer_ord_ore, query_integer_ord_ore)

Operator wrapper for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b eql_v3.query_integer_ord_ore

Returns

Type: boolean

boolean


neq(jsonb, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ore

Returns

Type: boolean

boolean


neq(numeric_ord_ore, jsonb)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
bjsonb

Returns

Type: boolean

boolean


neq(numeric_ord_ore, numeric_ord_ore)

Operator wrapper for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


neq(jsonb, bigint_eq)

Operator wrapper for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
b public.bigint_eq

Returns

Type: boolean

boolean


neq(bigint_eq, jsonb)

Operator wrapper for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
bjsonb

Returns

Type: boolean

boolean


neq(bigint_eq, bigint_eq)

Operator wrapper for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


neq(jsonb, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ore

Returns

Type: boolean

boolean


neq(real_ord_ore, jsonb)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
bjsonb

Returns

Type: boolean

boolean


neq(real_ord_ore, real_ord_ore)

Operator wrapper for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


neq(query_text_ord_ore, text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


neq(text_ord_ore, query_text_ord_ore)

Operator wrapper for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b eql_v3.query_text_ord_ore

Returns

Type: boolean

boolean


neq(query_smallint_ord_ore, smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


neq(smallint_ord_ore, query_smallint_ord_ore)

Operator wrapper for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b eql_v3.query_smallint_ord_ore

Returns

Type: boolean

boolean


neq(jsonb, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
ajsonb
b public.double_ord

Returns

Type: boolean

boolean


neq(double_ord, jsonb)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
bjsonb

Returns

Type: boolean

boolean


neq(double_ord, double_ord)

Operator wrapper for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
b public.double_ord

Returns

Type: boolean

boolean


neq(query_timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


neq(timestamp_ord_ope, query_timestamp_ord_ope)

Operator wrapper for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b eql_v3.query_timestamp_ord_ope

Returns

Type: boolean

boolean


neq(query_integer_ord, integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


neq(integer_ord, query_integer_ord)

Operator wrapper for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b eql_v3.query_integer_ord

Returns

Type: boolean

boolean


neq(query_integer_ord_ope, integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


neq(integer_ord_ope, query_integer_ord_ope)

Operator wrapper for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b eql_v3.query_integer_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ope

Returns

Type: boolean

boolean


neq(bigint_ord_ope, jsonb)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
bjsonb

Returns

Type: boolean

boolean


neq(bigint_ord_ope, bigint_ord_ope)

Operator wrapper for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


neq(query_text_ord_ope, text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


neq(text_ord_ope, query_text_ord_ope)

Operator wrapper for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b eql_v3.query_text_ord_ope

Returns

Type: boolean

boolean


neq(query_smallint_ord, smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


neq(smallint_ord, query_smallint_ord)

Operator wrapper for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b eql_v3.query_smallint_ord

Returns

Type: boolean

boolean


neq(query_numeric_ord, numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


neq(numeric_ord, query_numeric_ord)

Operator wrapper for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b eql_v3.query_numeric_ord

Returns

Type: boolean

boolean


neq(query_timestamp_ord_ore, timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


neq(timestamp_ord_ore, query_timestamp_ord_ore)

Operator wrapper for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b eql_v3.query_timestamp_ord_ore

Returns

Type: boolean

boolean


neq(jsonb, integer_eq)

Operator wrapper for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
b public.integer_eq

Returns

Type: boolean

boolean


neq(integer_eq, jsonb)

Operator wrapper for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
bjsonb

Returns

Type: boolean

boolean


neq(integer_eq, integer_eq)

Operator wrapper for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


neq(jsonb, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord

Returns

Type: boolean

boolean


neq(integer_ord, jsonb)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
bjsonb

Returns

Type: boolean

boolean


neq(integer_ord, integer_ord)

Operator wrapper for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


neq(query_timestamp_ord, timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


neq(timestamp_ord, query_timestamp_ord)

Operator wrapper for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b eql_v3.query_timestamp_ord

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
ajsonb
b public.text_search

Returns

Type: boolean

boolean


neq(text_search, jsonb)

Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
bjsonb

Returns

Type: boolean

boolean


Operator wrapper for public.text_search.

Parameters

NameTypeDescription
a public.text_search
b public.text_search

Returns

Type: boolean

boolean


neq(query_smallint_eq, smallint_eq)

Operator wrapper for eql_v3.query_smallint_eq.

Parameters

NameTypeDescription
a eql_v3.query_smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


neq(smallint_eq, query_smallint_eq)

Operator wrapper for eql_v3.query_smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b eql_v3.query_smallint_eq

Returns

Type: boolean

boolean


neq(jsonb, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord

Returns

Type: boolean

boolean


neq(timestamp_ord, jsonb)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
bjsonb

Returns

Type: boolean

boolean


neq(timestamp_ord, timestamp_ord)

Operator wrapper for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


neq(query_bigint_ord_ope, bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


neq(bigint_ord_ope, query_bigint_ord_ope)

Operator wrapper for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b eql_v3.query_bigint_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, smallint_eq)

Operator wrapper for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
b public.smallint_eq

Returns

Type: boolean

boolean


neq(smallint_eq, jsonb)

Operator wrapper for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
bjsonb

Returns

Type: boolean

boolean


neq(smallint_eq, smallint_eq)

Operator wrapper for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


neq(query_real_ord_ope, real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


neq(real_ord_ope, query_real_ord_ope)

Operator wrapper for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b eql_v3.query_real_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord

Returns

Type: boolean

boolean


neq(numeric_ord, jsonb)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
bjsonb

Returns

Type: boolean

boolean


neq(numeric_ord, numeric_ord)

Operator wrapper for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


neq(jsonb, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ope

Returns

Type: boolean

boolean


neq(date_ord_ope, jsonb)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
bjsonb

Returns

Type: boolean

boolean


neq(date_ord_ope, date_ord_ope)

Operator wrapper for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


neq(query_double_ord_ore, double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


neq(double_ord_ore, query_double_ord_ore)

Operator wrapper for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b eql_v3.query_double_ord_ore

Returns

Type: boolean

boolean


neq(jsonb, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ore

Returns

Type: boolean

boolean


neq(double_ord_ore, jsonb)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
bjsonb

Returns

Type: boolean

boolean


neq(double_ord_ore, double_ord_ore)

Operator wrapper for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


neq(query_double_ord, double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a eql_v3.query_double_ord
b public.double_ord

Returns

Type: boolean

boolean


neq(double_ord, query_double_ord)

Operator wrapper for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a public.double_ord
b eql_v3.query_double_ord

Returns

Type: boolean

boolean


neq(query_real_ord_ore, real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


neq(real_ord_ore, query_real_ord_ore)

Operator wrapper for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b eql_v3.query_real_ord_ore

Returns

Type: boolean

boolean


neq(query_date_ord_ope, date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


neq(date_ord_ope, query_date_ord_ope)

Operator wrapper for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b eql_v3.query_date_ord_ope

Returns

Type: boolean

boolean


neq(jsonb, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


neq(timestamp_ord_ope, jsonb)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
bjsonb

Returns

Type: boolean

boolean


neq(timestamp_ord_ope, timestamp_ord_ope)

Operator wrapper for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


neq(query_real_eq, real_eq)

Operator wrapper for eql_v3.query_real_eq.

Parameters

NameTypeDescription
a eql_v3.query_real_eq
b public.real_eq

Returns

Type: boolean

boolean


neq(real_eq, query_real_eq)

Operator wrapper for eql_v3.query_real_eq.

Parameters

NameTypeDescription
a public.real_eq
b eql_v3.query_real_eq

Returns

Type: boolean

boolean


neq(jsonb, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ore

Returns

Type: boolean

boolean


neq(date_ord_ore, jsonb)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
bjsonb

Returns

Type: boolean

boolean


neq(date_ord_ore, date_ord_ore)

Operator wrapper for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


neq(query_numeric_ord_ope, numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


neq(numeric_ord_ope, query_numeric_ord_ope)

Operator wrapper for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b eql_v3.query_numeric_ord_ope

Returns

Type: boolean

boolean


neq(query_bigint_ord, bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


neq(bigint_ord, query_bigint_ord)

Operator wrapper for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b eql_v3.query_bigint_ord

Returns

Type: boolean

boolean


ord_ope_term(query_smallint_ord_ope)

Index extractor for eql_v3.query_smallint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(text_ord_ope)

Index extractor for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(query_double_ord_ope)

Index extractor for eql_v3.query_double_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(double_ord_ope)

Index extractor for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(real_ord_ope)

Index extractor for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(integer_ord_ope)

Index extractor for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(smallint_ord_ope)

Index extractor for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(numeric_ord_ope)

Index extractor for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(query_timestamp_ord_ope)

Index extractor for eql_v3.query_timestamp_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(query_integer_ord_ope)

Index extractor for eql_v3.query_integer_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(bigint_ord_ope)

Index extractor for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(query_text_ord_ope)

Index extractor for eql_v3.query_text_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(query_bigint_ord_ope)

Index extractor for eql_v3.query_bigint_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(query_real_ord_ope)

Index extractor for eql_v3.query_real_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(date_ord_ope)

Index extractor for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(query_date_ord_ope)

Index extractor for eql_v3.query_date_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(timestamp_ord_ope)

Index extractor for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_ope_term(query_numeric_ord_ope)

Index extractor for eql_v3.query_numeric_ord_ope.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ope

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw


ord_term(smallint_ord_ore)

Index extractor for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_bigint_ord_ore)

Index extractor for eql_v3.query_bigint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(bigint_ord_ore)

Index extractor for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_date_ord_ore)

Index extractor for eql_v3.query_date_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_date_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(text_ord)

Index extractor for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(date_ord)

Index extractor for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(integer_ord_ore)

Index extractor for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


Index extractor for eql_v3.query_text_search.

Parameters

NameTypeDescription
a eql_v3.query_text_search

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(real_ord)

Index extractor for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(smallint_ord)

Index extractor for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_text_ord)

Index extractor for eql_v3.query_text_ord.

Parameters

NameTypeDescription
a eql_v3.query_text_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(timestamp_ord_ore)

Index extractor for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_date_ord)

Index extractor for eql_v3.query_date_ord.

Parameters

NameTypeDescription
a eql_v3.query_date_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_numeric_ord_ore)

Index extractor for eql_v3.query_numeric_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_real_ord)

Index extractor for eql_v3.query_real_ord.

Parameters

NameTypeDescription
a eql_v3.query_real_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(text_ord_ore)

Index extractor for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(bigint_ord)

Index extractor for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_integer_ord_ore)

Index extractor for eql_v3.query_integer_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(numeric_ord_ore)

Index extractor for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(real_ord_ore)

Index extractor for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_text_ord_ore)

Index extractor for eql_v3.query_text_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_text_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_smallint_ord_ore)

Index extractor for eql_v3.query_smallint_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(double_ord)

Index extractor for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_integer_ord)

Index extractor for eql_v3.query_integer_ord.

Parameters

NameTypeDescription
a eql_v3.query_integer_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_smallint_ord)

Index extractor for eql_v3.query_smallint_ord.

Parameters

NameTypeDescription
a eql_v3.query_smallint_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_numeric_ord)

Index extractor for eql_v3.query_numeric_ord.

Parameters

NameTypeDescription
a eql_v3.query_numeric_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_timestamp_ord_ore)

Index extractor for eql_v3.query_timestamp_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(integer_ord)

Index extractor for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_timestamp_ord)

Index extractor for eql_v3.query_timestamp_ord.

Parameters

NameTypeDescription
a eql_v3.query_timestamp_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


Index extractor for public.text_search.

Parameters

NameTypeDescription
a public.text_search

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(timestamp_ord)

Index extractor for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(numeric_ord)

Index extractor for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_double_ord_ore)

Index extractor for eql_v3.query_double_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_double_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(double_ord_ore)

Index extractor for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_double_ord)

Index extractor for eql_v3.query_double_ord.

Parameters

NameTypeDescription
a eql_v3.query_double_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_real_ord_ore)

Index extractor for eql_v3.query_real_ord_ore.

Parameters

NameTypeDescription
a eql_v3.query_real_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(date_ord_ore)

Index extractor for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ord_term(query_bigint_ord)

Index extractor for eql_v3.query_bigint_ord.

Parameters

NameTypeDescription
a eql_v3.query_bigint_ord

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256


ore_cllw(jsonb_entry)

Extract CLLW ORE index term from a ste_vec entry.

oc is only ever present on an sv element, never at a root encrypted value, so the typed overload accepts public.jsonb_entry. Returns SQL NULL when oc is absent (btree NULL-filters such rows from range queries).

Parameters

NameTypeDescription
entry public.jsonb_entry

Returns

Type: eql_v3_internal.ore_cllw

eql_v3_internal.ore_cllw Composite carrying the CLLW ciphertext, or NULL.

Variants

  • eql_v3.has_ore_cllw

selector(jsonb_entry)

Extract selector (s) from a ste_vec entry.

The DOMAIN CHECK guarantees is present, so this is a simple field access.

Parameters

NameTypeDescription
entry public.jsonb_entry

Returns

Type: text

text The selector value.


selector(jsonb)

Extract selector (s) from a raw jsonb encrypted value.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload

Returns

Type: text

text The selector value.

Exceptions

  • if s is absent.

ste_vec(jsonb)

Extract the sv element array as raw jsonb[].

Returns the elements of sv (or a single-element array wrapping the value when there is no sv). No envelope re-wrapping — raw jsonb elements.

Parameters

NameTypeDescription
valjsonbencrypted EQL payload

Returns

Type: jsonb[]

jsonb[] Array of sv elements.


ste_vec_contains(jsonb, jsonb)

Check if an sv array contains a specific sv element.

Match = selector equal AND eq_term equal (byte-equality over coalesce(hm, oc)). This collapses the v2 hm/oc CASE: under the XOR contract both terms are deterministic and byte-disjoint, so either one is a valid equality discriminator and a single byte comparison is correct.

ASSUMPTION (locked by a negative test in v3_jsonb_tests.rs): hm and oc byte distributions never collide at a given selector. The crypto layer configures a selector for eq XOR ordered, so both sides of a real comparison carry the same term type; and an oc value carries a leading domain-tag byte an hm never has. Unlike v2's explicit has_hmac(both)/has_ore_cllw(both)/ELSE false CASE, this collapse would wrongly match an hm needle against an oc leaf if their hex bytes were ever identical — which the contract prevents. The negative-containment test guards against regression.

Parameters

NameTypeDescription
ajsonbsv array to search within.
bjsonbsv element to search for.

Returns

Type: boolean

boolean True if b is found in any element of a.


ste_vec_contains(json, json)

Does encrypted value a contain all sv elements of b?

Empty b is always contained. Each element of b must match selector + eq_term in some element of a.

Parameters

NameTypeDescription
a public.json
b public.json

Returns

Type: boolean

boolean True if all elements of b are contained in a.

Variants

  • ste_vec_contains(jsonb[], jsonb)

to_ste_vec_query(json)

Convert a public.json to a query_jsonb needle.

Normalises each sv element down to the matching-relevant fields: s plus exactly one of hm / oc. Other fields (c, a, i/v, anything else) are stripped. This is the canonical needle shape for @> containment. Designed for use as a functional GIN index expression: GIN (eql_v3.to_ste_vec_query(col)::jsonb jsonb_path_ops).

Parameters

NameTypeDescription
e public.json

Returns

Type: eql_v3.query_jsonb

eql_v3.query_jsonb Query-shaped needle, sv elements normalised.

Variants

  • eql_v3.query_jsonb

version()

Get the installed EQL version string.

Returns the version string for the installed EQL library. This value is baked in at build time from the release tag.

Returns

Type: text

text Version string (e.g. "3.0.0" or "DEV" for development builds)

Note

Auto-generated during build from src/v3/version.template


Private Functions

bloom_filter(jsonb)

Extract the Bloom-filter index term from a jsonb payload.

Inlinable single-statement SQL — the planner can fold this into the calling query so the functional GIN index built on eql_v3_internal.match_term(col) (which calls this) engages structurally. Mirrors eql_v3_internal.hmac_256(jsonb): no RAISE and no pinned search_path. Returns NULL when bf is absent or present but not a json array, rather than raising. The text_match domain CHECK guarantees the bf key is present but not that it is an array, so a non-array bf (e.g. {"bf": null}) can reach here even on a typed value; gating on jsonb_typeof(...) = 'array` returns NULL for that case — and for raw jsonb outside the domain — instead of erroring inside jsonb_array_elements. NULL, like the HMAC extractor, is the right answer. An empty bf array yields an empty filter (contains nothing, contained by everything), matching set-containment semantics.

Parameters

NameTypeDescription
valjsonbThe encrypted payload.

Returns

Type: eql_v3_internal.bloom_filter

eql_v3_internal.bloom_filter The bf array as a smallint[] domain value, or NULL when bf is absent or not a json array.


compare_ore_block_256_term(ore_block_256_term, ore_block_256_term)

Compare two ORE block terms using cryptographic comparison.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256_term
b eql_v3_internal.ore_block_256_term

compare_ore_block_256_terms(ore_block_256, ore_block_256)

Compare ORE block composite types.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256
b eql_v3_internal.ore_block_256

compare_ore_block_256_terms(ore_block_256_term, ore_block_256_term)

Compare arrays of ORE block terms recursively.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256_term
b eql_v3_internal.ore_block_256_term

compare_ore_block_256_terms(ore_block_256, ore_block_256)

Compare ORE block composite types.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256
b eql_v3_internal.ore_block_256

compare_ore_cllw_term(ore_cllw, ore_cllw)

Variable-length CLLW ORE term comparison.

Parameters

NameTypeDescription
a eql_v3_internal.ore_cllw
b eql_v3_internal.ore_cllw

compare_ore_cllw_term_bytes(bytea, bytea)

CLLW per-byte comparison helper.

Parameters

NameTypeDescription
abytea
bbytea

contained_by(jsonb, smallint_ord_ore)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ore

Returns

Type: boolean

boolean


contained_by(smallint_ord_ore, jsonb)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
bjsonb

Returns

Type: boolean

boolean


contained_by(smallint_ord_ore, smallint_ord_ore)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


contained_by(jsonb, bigint_ord_ore)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ore

Returns

Type: boolean

boolean


contained_by(bigint_ord_ore, jsonb)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
bjsonb

Returns

Type: boolean

boolean


contained_by(bigint_ord_ore, bigint_ord_ore)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


contained_by(jsonb, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
ajsonb
b public.real_eq

Returns

Type: boolean

boolean


contained_by(real_eq, jsonb)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
bjsonb

Returns

Type: boolean

boolean


contained_by(real_eq, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
b public.real_eq

Returns

Type: boolean

boolean


contained_by(jsonb, text_ord)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
ajsonb
b public.text_ord

Returns

Type: boolean

boolean


contained_by(text_ord, jsonb)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
bjsonb

Returns

Type: boolean

boolean


contained_by(text_ord, text_ord)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
b public.text_ord

Returns

Type: boolean

boolean


contained_by(jsonb, date_ord)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
ajsonb
b public.date_ord

Returns

Type: boolean

boolean


contained_by(date_ord, jsonb)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
bjsonb

Returns

Type: boolean

boolean


contained_by(date_ord, date_ord)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
b public.date_ord

Returns

Type: boolean

boolean


contained_by(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
double

Returns

Type: boolean

boolean


contained_by(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
bjsonb

Returns

Type: boolean

boolean


contained_by()

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
double

Returns

Type: boolean

boolean


contained_by(jsonb, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
b public.date

Returns

Type: boolean

boolean


contained_by(date, jsonb)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
bjsonb

Returns

Type: boolean

boolean


contained_by(date, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
b public.date

Returns

Type: boolean

boolean


contained_by(jsonb, integer_ord_ore)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ore

Returns

Type: boolean

boolean


contained_by(integer_ord_ore, jsonb)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
bjsonb

Returns

Type: boolean

boolean


contained_by(integer_ord_ore, integer_ord_ore)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


contained_by(jsonb, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
b public.numeric_eq

Returns

Type: boolean

boolean


contained_by(numeric_eq, jsonb)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
bjsonb

Returns

Type: boolean

boolean


contained_by(numeric_eq, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


contained_by(jsonb, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
ajsonb
b public.date_eq

Returns

Type: boolean

boolean


contained_by(date_eq, jsonb)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
bjsonb

Returns

Type: boolean

boolean


contained_by(date_eq, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
b public.date_eq

Returns

Type: boolean

boolean


contained_by(jsonb, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
b public.boolean

Returns

Type: boolean

boolean


contained_by(boolean, jsonb)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
bjsonb

Returns

Type: boolean

boolean


contained_by(boolean, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
b public.boolean

Returns

Type: boolean

boolean


contained_by(jsonb, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
b public.numeric

Returns

Type: boolean

boolean


contained_by(numeric, jsonb)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
bjsonb

Returns

Type: boolean

boolean


contained_by(numeric, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
b public.numeric

Returns

Type: boolean

boolean


contained_by(jsonb, real_ord)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
ajsonb
b public.real_ord

Returns

Type: boolean

boolean


contained_by(real_ord, jsonb)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
bjsonb

Returns

Type: boolean

boolean


contained_by(real_ord, real_ord)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
b public.real_ord

Returns

Type: boolean

boolean


contained_by(jsonb, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_eq

Returns

Type: boolean

boolean


contained_by(timestamp_eq, jsonb)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
bjsonb

Returns

Type: boolean

boolean


contained_by(timestamp_eq, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


contained_by(jsonb, text_ord_ope)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ope

Returns

Type: boolean

boolean


contained_by(text_ord_ope, jsonb)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
bjsonb

Returns

Type: boolean

boolean


contained_by(text_ord_ope, text_ord_ope)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


contained_by(jsonb, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
ajsonb
b public.double_eq

Returns

Type: boolean

boolean


contained_by(double_eq, jsonb)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
bjsonb

Returns

Type: boolean

boolean


contained_by(double_eq, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
b public.double_eq

Returns

Type: boolean

boolean


contained_by(jsonb, smallint_ord)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord

Returns

Type: boolean

boolean


contained_by(smallint_ord, jsonb)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
bjsonb

Returns

Type: boolean

boolean


contained_by(smallint_ord, smallint_ord)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


contained_by(jsonb, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
b public.timestamp

Returns

Type: boolean

boolean


contained_by(timestamp, jsonb)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
bjsonb

Returns

Type: boolean

boolean


contained_by(timestamp, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
b public.timestamp

Returns

Type: boolean

boolean


contained_by(jsonb, double_ord_ope)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ope

Returns

Type: boolean

boolean


contained_by(double_ord_ope, jsonb)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
bjsonb

Returns

Type: boolean

boolean


contained_by(double_ord_ope, double_ord_ope)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


contained_by(jsonb, real_ord_ope)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ope

Returns

Type: boolean

boolean


contained_by(real_ord_ope, jsonb)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
bjsonb

Returns

Type: boolean

boolean


contained_by(real_ord_ope, real_ord_ope)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


contained_by(jsonb, integer_ord_ope)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ope

Returns

Type: boolean

boolean


contained_by(integer_ord_ope, jsonb)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
bjsonb

Returns

Type: boolean

boolean


contained_by(integer_ord_ope, integer_ord_ope)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


contained_by(jsonb, smallint_ord_ope)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ope

Returns

Type: boolean

boolean


contained_by(smallint_ord_ope, jsonb)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
bjsonb

Returns

Type: boolean

boolean


contained_by(smallint_ord_ope, smallint_ord_ope)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


contained_by(jsonb, timestamp_ord_ore)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


contained_by(timestamp_ord_ore, jsonb)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
bjsonb

Returns

Type: boolean

boolean


contained_by(timestamp_ord_ore, timestamp_ord_ore)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


contained_by(jsonb, numeric_ord_ope)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ope

Returns

Type: boolean

boolean


contained_by(numeric_ord_ope, jsonb)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
bjsonb

Returns

Type: boolean

boolean


contained_by(numeric_ord_ope, numeric_ord_ope)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


contained_by(jsonb, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
ajsonb
b public.text_eq

Returns

Type: boolean

boolean


contained_by(text_eq, jsonb)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
bjsonb

Returns

Type: boolean

boolean


contained_by(text_eq, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
b public.text_eq

Returns

Type: boolean

boolean


contained_by(jsonb, text_ord_ore)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ore

Returns

Type: boolean

boolean


contained_by(text_ord_ore, jsonb)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
bjsonb

Returns

Type: boolean

boolean


contained_by(text_ord_ore, text_ord_ore)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


contained_by(jsonb, bigint_ord)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord

Returns

Type: boolean

boolean


contained_by(bigint_ord, jsonb)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
bjsonb

Returns

Type: boolean

boolean


contained_by(bigint_ord, bigint_ord)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


contained_by(jsonb, numeric_ord_ore)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ore

Returns

Type: boolean

boolean


contained_by(numeric_ord_ore, jsonb)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
bjsonb

Returns

Type: boolean

boolean


contained_by(numeric_ord_ore, numeric_ord_ore)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


contained_by(jsonb, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
b public.bigint_eq

Returns

Type: boolean

boolean


contained_by(bigint_eq, jsonb)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
bjsonb

Returns

Type: boolean

boolean


contained_by(bigint_eq, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


contained_by(jsonb, real_ord_ore)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ore

Returns

Type: boolean

boolean


contained_by(real_ord_ore, jsonb)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
bjsonb

Returns

Type: boolean

boolean


contained_by(real_ord_ore, real_ord_ore)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


contained_by(jsonb, double_ord)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
ajsonb
b public.double_ord

Returns

Type: boolean

boolean


contained_by(double_ord, jsonb)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
bjsonb

Returns

Type: boolean

boolean


contained_by(double_ord, double_ord)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
b public.double_ord

Returns

Type: boolean

boolean


contained_by(jsonb, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
b public.bigint

Returns

Type: boolean

boolean


contained_by(bigint, jsonb)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
bjsonb

Returns

Type: boolean

boolean


contained_by(bigint, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
b public.bigint

Returns

Type: boolean

boolean


contained_by(jsonb, bigint_ord_ope)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ope

Returns

Type: boolean

boolean


contained_by(bigint_ord_ope, jsonb)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
bjsonb

Returns

Type: boolean

boolean


contained_by(bigint_ord_ope, bigint_ord_ope)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


contained_by(jsonb, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
b public.smallint

Returns

Type: boolean

boolean


contained_by(smallint, jsonb)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
bjsonb

Returns

Type: boolean

boolean


contained_by(smallint, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
b public.smallint

Returns

Type: boolean

boolean


contained_by(jsonb, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
b public.text

Returns

Type: boolean

boolean


contained_by(text, jsonb)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
bjsonb

Returns

Type: boolean

boolean


contained_by(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
b public.text

Returns

Type: boolean

boolean


contained_by(jsonb, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
b public.integer_eq

Returns

Type: boolean

boolean


contained_by(integer_eq, jsonb)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
bjsonb

Returns

Type: boolean

boolean


contained_by(integer_eq, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


contained_by(jsonb, integer_ord)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord

Returns

Type: boolean

boolean


contained_by(integer_ord, jsonb)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
bjsonb

Returns

Type: boolean

boolean


contained_by(integer_ord, integer_ord)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


contained_by(jsonb, timestamp_ord)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord

Returns

Type: boolean

boolean


contained_by(timestamp_ord, jsonb)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
bjsonb

Returns

Type: boolean

boolean


contained_by(timestamp_ord, timestamp_ord)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


contained_by(jsonb, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
b public.smallint_eq

Returns

Type: boolean

boolean


contained_by(smallint_eq, jsonb)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
bjsonb

Returns

Type: boolean

boolean


contained_by(smallint_eq, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


contained_by(jsonb, numeric_ord)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord

Returns

Type: boolean

boolean


contained_by(numeric_ord, jsonb)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
bjsonb

Returns

Type: boolean

boolean


contained_by(numeric_ord, numeric_ord)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


contained_by(jsonb, date_ord_ope)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ope

Returns

Type: boolean

boolean


contained_by(date_ord_ope, jsonb)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
bjsonb

Returns

Type: boolean

boolean


contained_by(date_ord_ope, date_ord_ope)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


contained_by(jsonb, double_ord_ore)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ore

Returns

Type: boolean

boolean


contained_by(double_ord_ore, jsonb)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
bjsonb

Returns

Type: boolean

boolean


contained_by(double_ord_ore, double_ord_ore)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


contained_by(jsonb, timestamp_ord_ope)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


contained_by(timestamp_ord_ope, jsonb)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
bjsonb

Returns

Type: boolean

boolean


contained_by(timestamp_ord_ope, timestamp_ord_ope)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


contained_by(jsonb, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
b public.integer

Returns

Type: boolean

boolean


contained_by(integer, jsonb)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
bjsonb

Returns

Type: boolean

boolean


contained_by(integer, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
b public.integer

Returns

Type: boolean

boolean


contained_by(jsonb, date_ord_ore)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ore

Returns

Type: boolean

boolean


contained_by(date_ord_ore, jsonb)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
bjsonb

Returns

Type: boolean

boolean


contained_by(date_ord_ore, date_ord_ore)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


contained_by(jsonb, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
b public.real

Returns

Type: boolean

boolean


contained_by(real, jsonb)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
bjsonb

Returns

Type: boolean

boolean


contained_by(real, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
b public.real

Returns

Type: boolean

boolean


contains(jsonb, smallint_ord_ore)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ore

Returns

Type: boolean

boolean


contains(smallint_ord_ore, jsonb)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
bjsonb

Returns

Type: boolean

boolean


contains(smallint_ord_ore, smallint_ord_ore)

Unsupported operator blocker for public.smallint_ord_ore.

Parameters

NameTypeDescription
a public.smallint_ord_ore
b public.smallint_ord_ore

Returns

Type: boolean

boolean


contains(jsonb, bigint_ord_ore)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ore

Returns

Type: boolean

boolean


contains(bigint_ord_ore, jsonb)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
bjsonb

Returns

Type: boolean

boolean


contains(bigint_ord_ore, bigint_ord_ore)

Unsupported operator blocker for public.bigint_ord_ore.

Parameters

NameTypeDescription
a public.bigint_ord_ore
b public.bigint_ord_ore

Returns

Type: boolean

boolean


contains(jsonb, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
ajsonb
b public.real_eq

Returns

Type: boolean

boolean


contains(real_eq, jsonb)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
bjsonb

Returns

Type: boolean

boolean


contains(real_eq, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
b public.real_eq

Returns

Type: boolean

boolean


contains(jsonb, text_ord)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
ajsonb
b public.text_ord

Returns

Type: boolean

boolean


contains(text_ord, jsonb)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
bjsonb

Returns

Type: boolean

boolean


contains(text_ord, text_ord)

Unsupported operator blocker for public.text_ord.

Parameters

NameTypeDescription
a public.text_ord
b public.text_ord

Returns

Type: boolean

boolean


contains(jsonb, date_ord)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
ajsonb
b public.date_ord

Returns

Type: boolean

boolean


contains(date_ord, jsonb)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
bjsonb

Returns

Type: boolean

boolean


contains(date_ord, date_ord)

Unsupported operator blocker for public.date_ord.

Parameters

NameTypeDescription
a public.date_ord
b public.date_ord

Returns

Type: boolean

boolean


contains(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
double

Returns

Type: boolean

boolean


contains(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
bjsonb

Returns

Type: boolean

boolean


contains()

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
double

Returns

Type: boolean

boolean


contains(jsonb, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
b public.date

Returns

Type: boolean

boolean


contains(date, jsonb)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
bjsonb

Returns

Type: boolean

boolean


contains(date, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
b public.date

Returns

Type: boolean

boolean


contains(jsonb, integer_ord_ore)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ore

Returns

Type: boolean

boolean


contains(integer_ord_ore, jsonb)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
bjsonb

Returns

Type: boolean

boolean


contains(integer_ord_ore, integer_ord_ore)

Unsupported operator blocker for public.integer_ord_ore.

Parameters

NameTypeDescription
a public.integer_ord_ore
b public.integer_ord_ore

Returns

Type: boolean

boolean


contains(jsonb, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
b public.numeric_eq

Returns

Type: boolean

boolean


contains(numeric_eq, jsonb)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
bjsonb

Returns

Type: boolean

boolean


contains(numeric_eq, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


contains(jsonb, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
ajsonb
b public.date_eq

Returns

Type: boolean

boolean


contains(date_eq, jsonb)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
bjsonb

Returns

Type: boolean

boolean


contains(date_eq, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
b public.date_eq

Returns

Type: boolean

boolean


contains(jsonb, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
b public.boolean

Returns

Type: boolean

boolean


contains(boolean, jsonb)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
bjsonb

Returns

Type: boolean

boolean


contains(boolean, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
b public.boolean

Returns

Type: boolean

boolean


contains(jsonb, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
b public.numeric

Returns

Type: boolean

boolean


contains(numeric, jsonb)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
bjsonb

Returns

Type: boolean

boolean


contains(numeric, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
b public.numeric

Returns

Type: boolean

boolean


contains(jsonb, real_ord)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
ajsonb
b public.real_ord

Returns

Type: boolean

boolean


contains(real_ord, jsonb)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
bjsonb

Returns

Type: boolean

boolean


contains(real_ord, real_ord)

Unsupported operator blocker for public.real_ord.

Parameters

NameTypeDescription
a public.real_ord
b public.real_ord

Returns

Type: boolean

boolean


contains(jsonb, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_eq

Returns

Type: boolean

boolean


contains(timestamp_eq, jsonb)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
bjsonb

Returns

Type: boolean

boolean


contains(timestamp_eq, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


contains(jsonb, text_ord_ope)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ope

Returns

Type: boolean

boolean


contains(text_ord_ope, jsonb)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
bjsonb

Returns

Type: boolean

boolean


contains(text_ord_ope, text_ord_ope)

Unsupported operator blocker for public.text_ord_ope.

Parameters

NameTypeDescription
a public.text_ord_ope
b public.text_ord_ope

Returns

Type: boolean

boolean


contains(jsonb, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
ajsonb
b public.double_eq

Returns

Type: boolean

boolean


contains(double_eq, jsonb)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
bjsonb

Returns

Type: boolean

boolean


contains(double_eq, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
b public.double_eq

Returns

Type: boolean

boolean


contains(jsonb, smallint_ord)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord

Returns

Type: boolean

boolean


contains(smallint_ord, jsonb)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
bjsonb

Returns

Type: boolean

boolean


contains(smallint_ord, smallint_ord)

Unsupported operator blocker for public.smallint_ord.

Parameters

NameTypeDescription
a public.smallint_ord
b public.smallint_ord

Returns

Type: boolean

boolean


contains(jsonb, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
b public.timestamp

Returns

Type: boolean

boolean


contains(timestamp, jsonb)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
bjsonb

Returns

Type: boolean

boolean


contains(timestamp, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
b public.timestamp

Returns

Type: boolean

boolean


contains(jsonb, double_ord_ope)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ope

Returns

Type: boolean

boolean


contains(double_ord_ope, jsonb)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
bjsonb

Returns

Type: boolean

boolean


contains(double_ord_ope, double_ord_ope)

Unsupported operator blocker for public.double_ord_ope.

Parameters

NameTypeDescription
a public.double_ord_ope
b public.double_ord_ope

Returns

Type: boolean

boolean


contains(jsonb, real_ord_ope)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ope

Returns

Type: boolean

boolean


contains(real_ord_ope, jsonb)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
bjsonb

Returns

Type: boolean

boolean


contains(real_ord_ope, real_ord_ope)

Unsupported operator blocker for public.real_ord_ope.

Parameters

NameTypeDescription
a public.real_ord_ope
b public.real_ord_ope

Returns

Type: boolean

boolean


contains(jsonb, integer_ord_ope)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord_ope

Returns

Type: boolean

boolean


contains(integer_ord_ope, jsonb)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
bjsonb

Returns

Type: boolean

boolean


contains(integer_ord_ope, integer_ord_ope)

Unsupported operator blocker for public.integer_ord_ope.

Parameters

NameTypeDescription
a public.integer_ord_ope
b public.integer_ord_ope

Returns

Type: boolean

boolean


contains(jsonb, smallint_ord_ope)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.smallint_ord_ope

Returns

Type: boolean

boolean


contains(smallint_ord_ope, jsonb)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
bjsonb

Returns

Type: boolean

boolean


contains(smallint_ord_ope, smallint_ord_ope)

Unsupported operator blocker for public.smallint_ord_ope.

Parameters

NameTypeDescription
a public.smallint_ord_ope
b public.smallint_ord_ope

Returns

Type: boolean

boolean


contains(jsonb, timestamp_ord_ore)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


contains(timestamp_ord_ore, jsonb)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
bjsonb

Returns

Type: boolean

boolean


contains(timestamp_ord_ore, timestamp_ord_ore)

Unsupported operator blocker for public.timestamp_ord_ore.

Parameters

NameTypeDescription
a public.timestamp_ord_ore
b public.timestamp_ord_ore

Returns

Type: boolean

boolean


contains(jsonb, numeric_ord_ope)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ope

Returns

Type: boolean

boolean


contains(numeric_ord_ope, jsonb)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
bjsonb

Returns

Type: boolean

boolean


contains(numeric_ord_ope, numeric_ord_ope)

Unsupported operator blocker for public.numeric_ord_ope.

Parameters

NameTypeDescription
a public.numeric_ord_ope
b public.numeric_ord_ope

Returns

Type: boolean

boolean


contains(jsonb, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
ajsonb
b public.text_eq

Returns

Type: boolean

boolean


contains(text_eq, jsonb)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
bjsonb

Returns

Type: boolean

boolean


contains(text_eq, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
b public.text_eq

Returns

Type: boolean

boolean


contains(jsonb, text_ord_ore)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.text_ord_ore

Returns

Type: boolean

boolean


contains(text_ord_ore, jsonb)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
bjsonb

Returns

Type: boolean

boolean


contains(text_ord_ore, text_ord_ore)

Unsupported operator blocker for public.text_ord_ore.

Parameters

NameTypeDescription
a public.text_ord_ore
b public.text_ord_ore

Returns

Type: boolean

boolean


contains(jsonb, bigint_ord)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord

Returns

Type: boolean

boolean


contains(bigint_ord, jsonb)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
bjsonb

Returns

Type: boolean

boolean


contains(bigint_ord, bigint_ord)

Unsupported operator blocker for public.bigint_ord.

Parameters

NameTypeDescription
a public.bigint_ord
b public.bigint_ord

Returns

Type: boolean

boolean


contains(jsonb, numeric_ord_ore)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord_ore

Returns

Type: boolean

boolean


contains(numeric_ord_ore, jsonb)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
bjsonb

Returns

Type: boolean

boolean


contains(numeric_ord_ore, numeric_ord_ore)

Unsupported operator blocker for public.numeric_ord_ore.

Parameters

NameTypeDescription
a public.numeric_ord_ore
b public.numeric_ord_ore

Returns

Type: boolean

boolean


contains(jsonb, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
b public.bigint_eq

Returns

Type: boolean

boolean


contains(bigint_eq, jsonb)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
bjsonb

Returns

Type: boolean

boolean


contains(bigint_eq, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


contains(jsonb, real_ord_ore)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.real_ord_ore

Returns

Type: boolean

boolean


contains(real_ord_ore, jsonb)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
bjsonb

Returns

Type: boolean

boolean


contains(real_ord_ore, real_ord_ore)

Unsupported operator blocker for public.real_ord_ore.

Parameters

NameTypeDescription
a public.real_ord_ore
b public.real_ord_ore

Returns

Type: boolean

boolean


contains(jsonb, double_ord)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
ajsonb
b public.double_ord

Returns

Type: boolean

boolean


contains(double_ord, jsonb)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
bjsonb

Returns

Type: boolean

boolean


contains(double_ord, double_ord)

Unsupported operator blocker for public.double_ord.

Parameters

NameTypeDescription
a public.double_ord
b public.double_ord

Returns

Type: boolean

boolean


contains(jsonb, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
b public.bigint

Returns

Type: boolean

boolean


contains(bigint, jsonb)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
bjsonb

Returns

Type: boolean

boolean


contains(bigint, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
b public.bigint

Returns

Type: boolean

boolean


contains(jsonb, bigint_ord_ope)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.bigint_ord_ope

Returns

Type: boolean

boolean


contains(bigint_ord_ope, jsonb)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
bjsonb

Returns

Type: boolean

boolean


contains(bigint_ord_ope, bigint_ord_ope)

Unsupported operator blocker for public.bigint_ord_ope.

Parameters

NameTypeDescription
a public.bigint_ord_ope
b public.bigint_ord_ope

Returns

Type: boolean

boolean


contains(jsonb, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
b public.smallint

Returns

Type: boolean

boolean


contains(smallint, jsonb)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
bjsonb

Returns

Type: boolean

boolean


contains(smallint, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
b public.smallint

Returns

Type: boolean

boolean


contains(jsonb, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
b public.text

Returns

Type: boolean

boolean


contains(text, jsonb)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
bjsonb

Returns

Type: boolean

boolean


contains(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
b public.text

Returns

Type: boolean

boolean


contains(jsonb, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
b public.integer_eq

Returns

Type: boolean

boolean


contains(integer_eq, jsonb)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
bjsonb

Returns

Type: boolean

boolean


contains(integer_eq, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


contains(jsonb, integer_ord)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
ajsonb
b public.integer_ord

Returns

Type: boolean

boolean


contains(integer_ord, jsonb)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
bjsonb

Returns

Type: boolean

boolean


contains(integer_ord, integer_ord)

Unsupported operator blocker for public.integer_ord.

Parameters

NameTypeDescription
a public.integer_ord
b public.integer_ord

Returns

Type: boolean

boolean


contains(jsonb, timestamp_ord)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord

Returns

Type: boolean

boolean


contains(timestamp_ord, jsonb)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
bjsonb

Returns

Type: boolean

boolean


contains(timestamp_ord, timestamp_ord)

Unsupported operator blocker for public.timestamp_ord.

Parameters

NameTypeDescription
a public.timestamp_ord
b public.timestamp_ord

Returns

Type: boolean

boolean


contains(jsonb, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
b public.smallint_eq

Returns

Type: boolean

boolean


contains(smallint_eq, jsonb)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
bjsonb

Returns

Type: boolean

boolean


contains(smallint_eq, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


contains(jsonb, numeric_ord)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
ajsonb
b public.numeric_ord

Returns

Type: boolean

boolean


contains(numeric_ord, jsonb)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
bjsonb

Returns

Type: boolean

boolean


contains(numeric_ord, numeric_ord)

Unsupported operator blocker for public.numeric_ord.

Parameters

NameTypeDescription
a public.numeric_ord
b public.numeric_ord

Returns

Type: boolean

boolean


contains(jsonb, date_ord_ope)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ope

Returns

Type: boolean

boolean


contains(date_ord_ope, jsonb)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
bjsonb

Returns

Type: boolean

boolean


contains(date_ord_ope, date_ord_ope)

Unsupported operator blocker for public.date_ord_ope.

Parameters

NameTypeDescription
a public.date_ord_ope
b public.date_ord_ope

Returns

Type: boolean

boolean


contains(jsonb, double_ord_ore)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.double_ord_ore

Returns

Type: boolean

boolean


contains(double_ord_ore, jsonb)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
bjsonb

Returns

Type: boolean

boolean


contains(double_ord_ore, double_ord_ore)

Unsupported operator blocker for public.double_ord_ore.

Parameters

NameTypeDescription
a public.double_ord_ore
b public.double_ord_ore

Returns

Type: boolean

boolean


contains(jsonb, timestamp_ord_ope)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


contains(timestamp_ord_ope, jsonb)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
bjsonb

Returns

Type: boolean

boolean


contains(timestamp_ord_ope, timestamp_ord_ope)

Unsupported operator blocker for public.timestamp_ord_ope.

Parameters

NameTypeDescription
a public.timestamp_ord_ope
b public.timestamp_ord_ope

Returns

Type: boolean

boolean


contains(jsonb, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
b public.integer

Returns

Type: boolean

boolean


contains(integer, jsonb)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
bjsonb

Returns

Type: boolean

boolean


contains(integer, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
b public.integer

Returns

Type: boolean

boolean


contains(jsonb, date_ord_ore)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
ajsonb
b public.date_ord_ore

Returns

Type: boolean

boolean


contains(date_ord_ore, jsonb)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
bjsonb

Returns

Type: boolean

boolean


contains(date_ord_ore, date_ord_ore)

Unsupported operator blocker for public.date_ord_ore.

Parameters

NameTypeDescription
a public.date_ord_ore
b public.date_ord_ore

Returns

Type: boolean

boolean


contains(jsonb, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
b public.real

Returns

Type: boolean

boolean


contains(real, jsonb)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
bjsonb

Returns

Type: boolean

boolean


contains(real, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
b public.real

Returns

Type: boolean

boolean


encrypted_domain_unsupported_bool(text, text)

Shared blocker helper.

Raises 'operator X is not supported for TYPE' so unsupported domain operators surface a clear error rather than fall through to native jsonb behaviour.

Parameters

NameTypeDescription
type_nametexttype name (eql_v3.<T>*)
operator_nametextsymbol (=, <, >, ->, etc.)

Returns

Type: boolean

boolean (never returns; always raises)


encrypted_domain_unsupported_jsonb(text, text)

Shared blocker helper returning jsonb.

Identical to encrypted_domain_unsupported_bool but typed for blockers shadowing native operators whose result is jsonb (#>, -, #-, ||), so composed expressions resolve and the body raises rather than failing earlier with a misleading 'operator does not exist' on a boolean result.

Parameters

NameTypeDescription
type_nametexttype name (eql_v3.<T>*)
operator_nametextsymbol (#>, -, #-,

Returns

Type: jsonb

jsonb (never returns; always raises)


encrypted_domain_unsupported_text(text, text)

Shared blocker helper returning text.

Identical to encrypted_domain_unsupported_bool but typed for blockers shadowing the native #>> operator whose result is text.

Parameters

NameTypeDescription
type_nametexttype name (eql_v3.<T>*)
operator_nametextsymbol (#>>)

Returns

Type: text

text (never returns; always raises)


eq(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
double

Returns

Type: boolean

boolean


eq(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
bjsonb

Returns

Type: boolean

boolean


eq()

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
double

Returns

Type: boolean

boolean


eq(jsonb, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
b public.date

Returns

Type: boolean

boolean


eq(date, jsonb)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
bjsonb

Returns

Type: boolean

boolean


eq(date, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
b public.date

Returns

Type: boolean

boolean


eq(jsonb, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
b public.boolean

Returns

Type: boolean

boolean


eq(boolean, jsonb)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
bjsonb

Returns

Type: boolean

boolean


eq(boolean, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
b public.boolean

Returns

Type: boolean

boolean


eq(jsonb, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
b public.numeric

Returns

Type: boolean

boolean


eq(numeric, jsonb)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
bjsonb

Returns

Type: boolean

boolean


eq(numeric, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
b public.numeric

Returns

Type: boolean

boolean


eq(jsonb, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
b public.timestamp

Returns

Type: boolean

boolean


eq(timestamp, jsonb)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
bjsonb

Returns

Type: boolean

boolean


eq(timestamp, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
b public.timestamp

Returns

Type: boolean

boolean


eq(jsonb, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
ajsonb
b public.text_match

Returns

Type: boolean

boolean


eq(text_match, jsonb)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
bjsonb

Returns

Type: boolean

boolean


eq(text_match, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
b public.text_match

Returns

Type: boolean

boolean


eq(jsonb, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
b public.bigint

Returns

Type: boolean

boolean


eq(bigint, jsonb)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
bjsonb

Returns

Type: boolean

boolean


eq(bigint, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
b public.bigint

Returns

Type: boolean

boolean


eq(jsonb, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
b public.smallint

Returns

Type: boolean

boolean


eq(smallint, jsonb)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
bjsonb

Returns

Type: boolean

boolean


eq(smallint, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
b public.smallint

Returns

Type: boolean

boolean


eq(jsonb, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
b public.text

Returns

Type: boolean

boolean


eq(text, jsonb)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
bjsonb

Returns

Type: boolean

boolean


eq(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
b public.text

Returns

Type: boolean

boolean


eq(jsonb, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
b public.integer

Returns

Type: boolean

boolean


eq(integer, jsonb)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
bjsonb

Returns

Type: boolean

boolean


eq(integer, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
b public.integer

Returns

Type: boolean

boolean


eq(jsonb, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
b public.real

Returns

Type: boolean

boolean


eq(real, jsonb)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
bjsonb

Returns

Type: boolean

boolean


eq(real, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
b public.real

Returns

Type: boolean

boolean


gt(jsonb, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
ajsonb
b public.real_eq

Returns

Type: boolean

boolean


gt(real_eq, jsonb)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
bjsonb

Returns

Type: boolean

boolean


gt(real_eq, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
b public.real_eq

Returns

Type: boolean

boolean


gt(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
double

Returns

Type: boolean

boolean


gt(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
bjsonb

Returns

Type: boolean

boolean


gt()

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
double

Returns

Type: boolean

boolean


gt(jsonb, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
b public.date

Returns

Type: boolean

boolean


gt(date, jsonb)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
bjsonb

Returns

Type: boolean

boolean


gt(date, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
b public.date

Returns

Type: boolean

boolean


gt(jsonb, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
b public.numeric_eq

Returns

Type: boolean

boolean


gt(numeric_eq, jsonb)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
bjsonb

Returns

Type: boolean

boolean


gt(numeric_eq, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


gt(jsonb, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
ajsonb
b public.date_eq

Returns

Type: boolean

boolean


gt(date_eq, jsonb)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
bjsonb

Returns

Type: boolean

boolean


gt(date_eq, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
b public.date_eq

Returns

Type: boolean

boolean


gt(jsonb, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
b public.boolean

Returns

Type: boolean

boolean


gt(boolean, jsonb)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
bjsonb

Returns

Type: boolean

boolean


gt(boolean, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
b public.boolean

Returns

Type: boolean

boolean


gt(jsonb, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
b public.numeric

Returns

Type: boolean

boolean


gt(numeric, jsonb)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
bjsonb

Returns

Type: boolean

boolean


gt(numeric, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
b public.numeric

Returns

Type: boolean

boolean


gt(jsonb, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_eq

Returns

Type: boolean

boolean


gt(timestamp_eq, jsonb)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
bjsonb

Returns

Type: boolean

boolean


gt(timestamp_eq, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


gt(jsonb, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
ajsonb
b public.double_eq

Returns

Type: boolean

boolean


gt(double_eq, jsonb)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
bjsonb

Returns

Type: boolean

boolean


gt(double_eq, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
b public.double_eq

Returns

Type: boolean

boolean


gt(jsonb, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
b public.timestamp

Returns

Type: boolean

boolean


gt(timestamp, jsonb)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
bjsonb

Returns

Type: boolean

boolean


gt(timestamp, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
b public.timestamp

Returns

Type: boolean

boolean


gt(jsonb, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
ajsonb
b public.text_match

Returns

Type: boolean

boolean


gt(text_match, jsonb)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
bjsonb

Returns

Type: boolean

boolean


gt(text_match, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
b public.text_match

Returns

Type: boolean

boolean


gt(jsonb, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
ajsonb
b public.text_eq

Returns

Type: boolean

boolean


gt(text_eq, jsonb)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
bjsonb

Returns

Type: boolean

boolean


gt(text_eq, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
b public.text_eq

Returns

Type: boolean

boolean


gt(jsonb, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
b public.bigint_eq

Returns

Type: boolean

boolean


gt(bigint_eq, jsonb)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
bjsonb

Returns

Type: boolean

boolean


gt(bigint_eq, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


gt(jsonb, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
b public.bigint

Returns

Type: boolean

boolean


gt(bigint, jsonb)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
bjsonb

Returns

Type: boolean

boolean


gt(bigint, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
b public.bigint

Returns

Type: boolean

boolean


gt(jsonb, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
b public.smallint

Returns

Type: boolean

boolean


gt(smallint, jsonb)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
bjsonb

Returns

Type: boolean

boolean


gt(smallint, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
b public.smallint

Returns

Type: boolean

boolean


gt(jsonb, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
b public.text

Returns

Type: boolean

boolean


gt(text, jsonb)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
bjsonb

Returns

Type: boolean

boolean


gt(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
b public.text

Returns

Type: boolean

boolean


gt(jsonb, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
b public.integer_eq

Returns

Type: boolean

boolean


gt(integer_eq, jsonb)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
bjsonb

Returns

Type: boolean

boolean


gt(integer_eq, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


gt(jsonb, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
b public.smallint_eq

Returns

Type: boolean

boolean


gt(smallint_eq, jsonb)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
bjsonb

Returns

Type: boolean

boolean


gt(smallint_eq, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


gt(jsonb, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
b public.integer

Returns

Type: boolean

boolean


gt(integer, jsonb)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
bjsonb

Returns

Type: boolean

boolean


gt(integer, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
b public.integer

Returns

Type: boolean

boolean


gt(jsonb, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
b public.real

Returns

Type: boolean

boolean


gt(real, jsonb)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
bjsonb

Returns

Type: boolean

boolean


gt(real, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
b public.real

Returns

Type: boolean

boolean


gte(jsonb, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
ajsonb
b public.real_eq

Returns

Type: boolean

boolean


gte(real_eq, jsonb)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
bjsonb

Returns

Type: boolean

boolean


gte(real_eq, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
b public.real_eq

Returns

Type: boolean

boolean


gte(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
double

Returns

Type: boolean

boolean


gte(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
bjsonb

Returns

Type: boolean

boolean


gte()

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
double

Returns

Type: boolean

boolean


gte(jsonb, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
b public.date

Returns

Type: boolean

boolean


gte(date, jsonb)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
bjsonb

Returns

Type: boolean

boolean


gte(date, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
b public.date

Returns

Type: boolean

boolean


gte(jsonb, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
b public.numeric_eq

Returns

Type: boolean

boolean


gte(numeric_eq, jsonb)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
bjsonb

Returns

Type: boolean

boolean


gte(numeric_eq, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


gte(jsonb, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
ajsonb
b public.date_eq

Returns

Type: boolean

boolean


gte(date_eq, jsonb)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
bjsonb

Returns

Type: boolean

boolean


gte(date_eq, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
b public.date_eq

Returns

Type: boolean

boolean


gte(jsonb, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
b public.boolean

Returns

Type: boolean

boolean


gte(boolean, jsonb)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
bjsonb

Returns

Type: boolean

boolean


gte(boolean, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
b public.boolean

Returns

Type: boolean

boolean


gte(jsonb, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
b public.numeric

Returns

Type: boolean

boolean


gte(numeric, jsonb)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
bjsonb

Returns

Type: boolean

boolean


gte(numeric, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
b public.numeric

Returns

Type: boolean

boolean


gte(jsonb, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_eq

Returns

Type: boolean

boolean


gte(timestamp_eq, jsonb)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
bjsonb

Returns

Type: boolean

boolean


gte(timestamp_eq, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


gte(jsonb, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
ajsonb
b public.double_eq

Returns

Type: boolean

boolean


gte(double_eq, jsonb)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
bjsonb

Returns

Type: boolean

boolean


gte(double_eq, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
b public.double_eq

Returns

Type: boolean

boolean


gte(jsonb, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
b public.timestamp

Returns

Type: boolean

boolean


gte(timestamp, jsonb)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
bjsonb

Returns

Type: boolean

boolean


gte(timestamp, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
b public.timestamp

Returns

Type: boolean

boolean


gte(jsonb, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
ajsonb
b public.text_match

Returns

Type: boolean

boolean


gte(text_match, jsonb)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
bjsonb

Returns

Type: boolean

boolean


gte(text_match, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
b public.text_match

Returns

Type: boolean

boolean


gte(jsonb, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
ajsonb
b public.text_eq

Returns

Type: boolean

boolean


gte(text_eq, jsonb)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
bjsonb

Returns

Type: boolean

boolean


gte(text_eq, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
b public.text_eq

Returns

Type: boolean

boolean


gte(jsonb, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
b public.bigint_eq

Returns

Type: boolean

boolean


gte(bigint_eq, jsonb)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
bjsonb

Returns

Type: boolean

boolean


gte(bigint_eq, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


gte(jsonb, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
b public.bigint

Returns

Type: boolean

boolean


gte(bigint, jsonb)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
bjsonb

Returns

Type: boolean

boolean


gte(bigint, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
b public.bigint

Returns

Type: boolean

boolean


gte(jsonb, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
b public.smallint

Returns

Type: boolean

boolean


gte(smallint, jsonb)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
bjsonb

Returns

Type: boolean

boolean


gte(smallint, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
b public.smallint

Returns

Type: boolean

boolean


gte(jsonb, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
b public.text

Returns

Type: boolean

boolean


gte(text, jsonb)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
bjsonb

Returns

Type: boolean

boolean


gte(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
b public.text

Returns

Type: boolean

boolean


gte(jsonb, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
b public.integer_eq

Returns

Type: boolean

boolean


gte(integer_eq, jsonb)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
bjsonb

Returns

Type: boolean

boolean


gte(integer_eq, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


gte(jsonb, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
b public.smallint_eq

Returns

Type: boolean

boolean


gte(smallint_eq, jsonb)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
bjsonb

Returns

Type: boolean

boolean


gte(smallint_eq, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


gte(jsonb, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
b public.integer

Returns

Type: boolean

boolean


gte(integer, jsonb)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
bjsonb

Returns

Type: boolean

boolean


gte(integer, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
b public.integer

Returns

Type: boolean

boolean


gte(jsonb, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
b public.real

Returns

Type: boolean

boolean


gte(real, jsonb)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
bjsonb

Returns

Type: boolean

boolean


gte(real, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
b public.real

Returns

Type: boolean

boolean


has_bloom_filter(jsonb)

Test whether a jsonb payload carries a Bloom-filter (bf) term.

Parameters

NameTypeDescription
valjsonbThe encrypted payload.

Returns

Type: boolean

boolean True when the bf key is present and non-null.


has_hmac_256(jsonb)

Check if JSONB payload contains HMAC-SHA256 index term.

Parameters

NameTypeDescription
valjsonbcontaining encrypted EQL payload

Returns

Type: boolean

boolean True if 'hm' field is present and non-null


has_ore_block_256(jsonb)

Check if JSONB payload contains an ORE block index term.

Parameters

NameTypeDescription
valjsonbcontaining encrypted EQL payload

Returns

Type: boolean

boolean True only if the 'ob' field is present and is a JSON array

Note

A well-formed ORE index term is always a JSON array of block terms, so this guard treats a present-but-non-array ob (a scalar or object) as absent. That makes the extractor RAISE on a structurally invalid ob payload at the boundary instead of silently degrading it to a NULL index term in jsonb_array_to_ore_block_256. The previous val ->> 'ob IS NOT NULLform stringified scalars/objects and so reported them as present.{}(absentob) and{"ob": null}(JSON null) both remainfalse`.


has_ore_cllw(jsonb)

Check if a raw jsonb value contains a CLLW ORE index term.

Parameters

NameTypeDescription
valjsonbAn object that may carry an oc field

Returns

Type: boolean

boolean True if oc field is present and non-null


hmac_256(jsonb)

Extract HMAC-SHA256 index term from JSONB payload.

Inlinable single-statement SQL — the planner can fold this into the calling query so functional hash/btree indexes built on eql_v3_internal.eq_term(col) (which calls this) engage structurally.

Parameters

NameTypeDescription
valjsonbcontaining encrypted EQL payload

Returns

Type: eql_v3_internal.hmac_256

eql_v3_internal.hmac_256 HMAC-SHA256 hash value, or NULL when hm is absent


is_ste_vec_array(jsonb)

Check if a jsonb payload is marked as an sv array (a flag true).

Parameters

NameTypeDescription
valjsonbencrypted EQL payload

Returns

Type: boolean

boolean True if a is present and true.


jsonb_array_to_bytea_array(jsonb)

Convert JSONB hex array to bytea array.

Parameters

NameTypeDescription
valjsonb

jsonb_array_to_ore_block_256(jsonb)

Convert JSONB array to ORE block composite type.

Parameters

NameTypeDescription
valjsonb

jsonb_blocked_compare_json_json(json, json)

Blocker: root public.json document comparisons.

Parameters

NameTypeDescription
a public.json
b public.json

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_compare_json_jsonb(json, jsonb)

Blocker: root public.json-to-jsonb comparisons.

Parameters

NameTypeDescription
a public.json
bjsonbNative RHS operand.

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_compare_jsonb_json(jsonb, json)

Blocker: root jsonb-to-public.json comparisons.

Parameters

NameTypeDescription
ajsonbNative LHS operand.
b public.json

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_concat(json, jsonb)

Blocker: || (concatenate, encrypted on the left).

Parameters

NameTypeDescription
a public.json
bjsonbNative RHS operand.

Returns

Type: jsonb

jsonb Never returns; always raises 'operator not supported'.


jsonb_blocked_concat_rhs(jsonb, json)

Blocker: || (concatenate, encrypted on the right).

Parameters

NameTypeDescription
ajsonbNative LHS operand.
b public.json

Returns

Type: jsonb

jsonb Never returns; always raises 'operator not supported'.


jsonb_blocked_contained_json_jsonb(json, jsonb)

Blocker: <@ with encrypted root document and native jsonb.

Parameters

NameTypeDescription
a public.json
bjsonbNative RHS operand.

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_contained_jsonb_json(jsonb, json)

Blocker: <@ with native jsonb and encrypted root document.

Parameters

NameTypeDescription
ajsonbNative LHS operand.
b public.json

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_contains_json_jsonb(json, jsonb)

Blocker: > with encrypted root document and native jsonb.

Parameters

NameTypeDescription
a public.json
bjsonbNative RHS operand.

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_contains_jsonb_json(jsonb, json)

Blocker: > with native jsonb and encrypted root document.

Parameters

NameTypeDescription
ajsonbNative LHS operand.
b public.json

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_delete_array(json, text)

Blocker: - (delete keys, text[] RHS).

Parameters

NameTypeDescription
a public.json
btextNative RHS operand.

Returns

Type: jsonb

jsonb Never returns; always raises 'operator not supported'.


jsonb_blocked_delete_int(json, integer)

Blocker: - (delete index, integer RHS).

Parameters

NameTypeDescription
a public.json
bintegerNative RHS operand.

Returns

Type: jsonb

jsonb Never returns; always raises 'operator not supported'.


jsonb_blocked_delete_path(json, text)

Blocker: #- (delete at path).

Parameters

NameTypeDescription
a public.json
btextNative RHS operand.

Returns

Type: jsonb

jsonb Never returns; always raises 'operator not supported'.


jsonb_blocked_delete_text(json, text)

Blocker: - (delete key, text RHS; native returns jsonb).

Parameters

NameTypeDescription
a public.json
btextNative RHS operand.

Returns

Type: jsonb

jsonb Never returns; always raises 'operator not supported'.


jsonb_blocked_exists(json, text)

Blocker: ? (key/element exists).

Parameters

NameTypeDescription
a public.json
btextNative RHS operand.

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_exists_all(json, text)

Blocker: ?& (all keys exist).

Parameters

NameTypeDescription
a public.json
btextNative RHS operand.

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_exists_any(json, text)

Blocker: ?| (any key exists).

Parameters

NameTypeDescription
a public.json
btextNative RHS operand.

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_jsonpath_exists(json, jsonpath)

Blocker: @? (jsonpath exists).

Parameters

NameTypeDescription
a public.json
bjsonpathNative RHS operand.

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_jsonpath_match(json, jsonpath)

Blocker: @ (jsonpath predicate).

Parameters

NameTypeDescription
a public.json
bjsonpathNative RHS operand.

Returns

Type: boolean

boolean Never returns; always raises 'operator not supported'.


jsonb_blocked_path_extract(json, text)

Blocker: #> (path extract, native returns jsonb).

Parameters

NameTypeDescription
a public.json
btextNative RHS operand.

Returns

Type: jsonb

jsonb Never returns; always raises 'operator not supported'.


jsonb_blocked_path_extract_text(json, text)

Blocker: #>> (path extract as text).

Parameters

NameTypeDescription
a public.json
btextNative RHS operand.

Returns

Type: text

text Never returns; always raises 'operator not supported'.


jsonb_entry_max_sfunc(jsonb_entry, jsonb_entry)

State function for max on public.jsonb_entry.

Keeps whichever orderable entry has the greater CLLW ORE term. -less entries are skipped, mirroring (see the file

Parameters

NameTypeDescription
state public.jsonb_entry
value public.jsonb_entry

Returns

Type: public.jsonb_entry

public.jsonb_entry The greater orderable entry by ore_cllw.

Note

).


jsonb_entry_min_sfunc(jsonb_entry, jsonb_entry)

State function for min on public.jsonb_entry.

Keeps whichever orderable entry has the lesser CLLW ORE term. STRICT, so SQL NULL entries are skipped by the aggregate machinery; -less (non-orderable) entries are skipped explicitly (see the

Parameters

NameTypeDescription
state public.jsonb_entry
value public.jsonb_entry

Returns

Type: public.jsonb_entry

public.jsonb_entry The lesser orderable entry by ore_cllw.

Note

on this file).


lt(jsonb, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
ajsonb
b public.real_eq

Returns

Type: boolean

boolean


lt(real_eq, jsonb)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
bjsonb

Returns

Type: boolean

boolean


lt(real_eq, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
b public.real_eq

Returns

Type: boolean

boolean


lt(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
double

Returns

Type: boolean

boolean


lt(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
bjsonb

Returns

Type: boolean

boolean


lt()

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
double

Returns

Type: boolean

boolean


lt(jsonb, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
b public.date

Returns

Type: boolean

boolean


lt(date, jsonb)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
bjsonb

Returns

Type: boolean

boolean


lt(date, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
b public.date

Returns

Type: boolean

boolean


lt(jsonb, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
b public.numeric_eq

Returns

Type: boolean

boolean


lt(numeric_eq, jsonb)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
bjsonb

Returns

Type: boolean

boolean


lt(numeric_eq, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


lt(jsonb, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
ajsonb
b public.date_eq

Returns

Type: boolean

boolean


lt(date_eq, jsonb)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
bjsonb

Returns

Type: boolean

boolean


lt(date_eq, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
b public.date_eq

Returns

Type: boolean

boolean


lt(jsonb, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
b public.boolean

Returns

Type: boolean

boolean


lt(boolean, jsonb)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
bjsonb

Returns

Type: boolean

boolean


lt(boolean, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
b public.boolean

Returns

Type: boolean

boolean


lt(jsonb, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
b public.numeric

Returns

Type: boolean

boolean


lt(numeric, jsonb)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
bjsonb

Returns

Type: boolean

boolean


lt(numeric, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
b public.numeric

Returns

Type: boolean

boolean


lt(jsonb, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_eq

Returns

Type: boolean

boolean


lt(timestamp_eq, jsonb)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
bjsonb

Returns

Type: boolean

boolean


lt(timestamp_eq, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


lt(jsonb, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
ajsonb
b public.double_eq

Returns

Type: boolean

boolean


lt(double_eq, jsonb)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
bjsonb

Returns

Type: boolean

boolean


lt(double_eq, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
b public.double_eq

Returns

Type: boolean

boolean


lt(jsonb, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
b public.timestamp

Returns

Type: boolean

boolean


lt(timestamp, jsonb)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
bjsonb

Returns

Type: boolean

boolean


lt(timestamp, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
b public.timestamp

Returns

Type: boolean

boolean


lt(jsonb, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
ajsonb
b public.text_match

Returns

Type: boolean

boolean


lt(text_match, jsonb)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
bjsonb

Returns

Type: boolean

boolean


lt(text_match, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
b public.text_match

Returns

Type: boolean

boolean


lt(jsonb, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
ajsonb
b public.text_eq

Returns

Type: boolean

boolean


lt(text_eq, jsonb)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
bjsonb

Returns

Type: boolean

boolean


lt(text_eq, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
b public.text_eq

Returns

Type: boolean

boolean


lt(jsonb, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
b public.bigint_eq

Returns

Type: boolean

boolean


lt(bigint_eq, jsonb)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
bjsonb

Returns

Type: boolean

boolean


lt(bigint_eq, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


lt(jsonb, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
b public.bigint

Returns

Type: boolean

boolean


lt(bigint, jsonb)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
bjsonb

Returns

Type: boolean

boolean


lt(bigint, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
b public.bigint

Returns

Type: boolean

boolean


lt(jsonb, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
b public.smallint

Returns

Type: boolean

boolean


lt(smallint, jsonb)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
bjsonb

Returns

Type: boolean

boolean


lt(smallint, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
b public.smallint

Returns

Type: boolean

boolean


lt(jsonb, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
b public.text

Returns

Type: boolean

boolean


lt(text, jsonb)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
bjsonb

Returns

Type: boolean

boolean


lt(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
b public.text

Returns

Type: boolean

boolean


lt(jsonb, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
b public.integer_eq

Returns

Type: boolean

boolean


lt(integer_eq, jsonb)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
bjsonb

Returns

Type: boolean

boolean


lt(integer_eq, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


lt(jsonb, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
b public.smallint_eq

Returns

Type: boolean

boolean


lt(smallint_eq, jsonb)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
bjsonb

Returns

Type: boolean

boolean


lt(smallint_eq, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


lt(jsonb, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
b public.integer

Returns

Type: boolean

boolean


lt(integer, jsonb)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
bjsonb

Returns

Type: boolean

boolean


lt(integer, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
b public.integer

Returns

Type: boolean

boolean


lt(jsonb, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
b public.real

Returns

Type: boolean

boolean


lt(real, jsonb)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
bjsonb

Returns

Type: boolean

boolean


lt(real, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
b public.real

Returns

Type: boolean

boolean


lte(jsonb, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
ajsonb
b public.real_eq

Returns

Type: boolean

boolean


lte(real_eq, jsonb)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
bjsonb

Returns

Type: boolean

boolean


lte(real_eq, real_eq)

Unsupported operator blocker for public.real_eq.

Parameters

NameTypeDescription
a public.real_eq
b public.real_eq

Returns

Type: boolean

boolean


lte(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
double

Returns

Type: boolean

boolean


lte(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
bjsonb

Returns

Type: boolean

boolean


lte()

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
double

Returns

Type: boolean

boolean


lte(jsonb, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
b public.date

Returns

Type: boolean

boolean


lte(date, jsonb)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
bjsonb

Returns

Type: boolean

boolean


lte(date, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
b public.date

Returns

Type: boolean

boolean


lte(jsonb, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
ajsonb
b public.numeric_eq

Returns

Type: boolean

boolean


lte(numeric_eq, jsonb)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
bjsonb

Returns

Type: boolean

boolean


lte(numeric_eq, numeric_eq)

Unsupported operator blocker for public.numeric_eq.

Parameters

NameTypeDescription
a public.numeric_eq
b public.numeric_eq

Returns

Type: boolean

boolean


lte(jsonb, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
ajsonb
b public.date_eq

Returns

Type: boolean

boolean


lte(date_eq, jsonb)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
bjsonb

Returns

Type: boolean

boolean


lte(date_eq, date_eq)

Unsupported operator blocker for public.date_eq.

Parameters

NameTypeDescription
a public.date_eq
b public.date_eq

Returns

Type: boolean

boolean


lte(jsonb, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
b public.boolean

Returns

Type: boolean

boolean


lte(boolean, jsonb)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
bjsonb

Returns

Type: boolean

boolean


lte(boolean, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
b public.boolean

Returns

Type: boolean

boolean


lte(jsonb, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
b public.numeric

Returns

Type: boolean

boolean


lte(numeric, jsonb)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
bjsonb

Returns

Type: boolean

boolean


lte(numeric, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
b public.numeric

Returns

Type: boolean

boolean


lte(jsonb, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
ajsonb
b public.timestamp_eq

Returns

Type: boolean

boolean


lte(timestamp_eq, jsonb)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
bjsonb

Returns

Type: boolean

boolean


lte(timestamp_eq, timestamp_eq)

Unsupported operator blocker for public.timestamp_eq.

Parameters

NameTypeDescription
a public.timestamp_eq
b public.timestamp_eq

Returns

Type: boolean

boolean


lte(jsonb, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
ajsonb
b public.double_eq

Returns

Type: boolean

boolean


lte(double_eq, jsonb)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
bjsonb

Returns

Type: boolean

boolean


lte(double_eq, double_eq)

Unsupported operator blocker for public.double_eq.

Parameters

NameTypeDescription
a public.double_eq
b public.double_eq

Returns

Type: boolean

boolean


lte(jsonb, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
b public.timestamp

Returns

Type: boolean

boolean


lte(timestamp, jsonb)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
bjsonb

Returns

Type: boolean

boolean


lte(timestamp, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
b public.timestamp

Returns

Type: boolean

boolean


lte(jsonb, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
ajsonb
b public.text_match

Returns

Type: boolean

boolean


lte(text_match, jsonb)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
bjsonb

Returns

Type: boolean

boolean


lte(text_match, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
b public.text_match

Returns

Type: boolean

boolean


lte(jsonb, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
ajsonb
b public.text_eq

Returns

Type: boolean

boolean


lte(text_eq, jsonb)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
bjsonb

Returns

Type: boolean

boolean


lte(text_eq, text_eq)

Unsupported operator blocker for public.text_eq.

Parameters

NameTypeDescription
a public.text_eq
b public.text_eq

Returns

Type: boolean

boolean


lte(jsonb, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
ajsonb
b public.bigint_eq

Returns

Type: boolean

boolean


lte(bigint_eq, jsonb)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
bjsonb

Returns

Type: boolean

boolean


lte(bigint_eq, bigint_eq)

Unsupported operator blocker for public.bigint_eq.

Parameters

NameTypeDescription
a public.bigint_eq
b public.bigint_eq

Returns

Type: boolean

boolean


lte(jsonb, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
b public.bigint

Returns

Type: boolean

boolean


lte(bigint, jsonb)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
bjsonb

Returns

Type: boolean

boolean


lte(bigint, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
b public.bigint

Returns

Type: boolean

boolean


lte(jsonb, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
b public.smallint

Returns

Type: boolean

boolean


lte(smallint, jsonb)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
bjsonb

Returns

Type: boolean

boolean


lte(smallint, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
b public.smallint

Returns

Type: boolean

boolean


lte(jsonb, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
b public.text

Returns

Type: boolean

boolean


lte(text, jsonb)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
bjsonb

Returns

Type: boolean

boolean


lte(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
b public.text

Returns

Type: boolean

boolean


lte(jsonb, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
ajsonb
b public.integer_eq

Returns

Type: boolean

boolean


lte(integer_eq, jsonb)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
bjsonb

Returns

Type: boolean

boolean


lte(integer_eq, integer_eq)

Unsupported operator blocker for public.integer_eq.

Parameters

NameTypeDescription
a public.integer_eq
b public.integer_eq

Returns

Type: boolean

boolean


lte(jsonb, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
ajsonb
b public.smallint_eq

Returns

Type: boolean

boolean


lte(smallint_eq, jsonb)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
bjsonb

Returns

Type: boolean

boolean


lte(smallint_eq, smallint_eq)

Unsupported operator blocker for public.smallint_eq.

Parameters

NameTypeDescription
a public.smallint_eq
b public.smallint_eq

Returns

Type: boolean

boolean


lte(jsonb, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
b public.integer

Returns

Type: boolean

boolean


lte(integer, jsonb)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
bjsonb

Returns

Type: boolean

boolean


lte(integer, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
b public.integer

Returns

Type: boolean

boolean


lte(jsonb, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
b public.real

Returns

Type: boolean

boolean


lte(real, jsonb)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
bjsonb

Returns

Type: boolean

boolean


lte(real, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
b public.real

Returns

Type: boolean

boolean


max_sfunc(text_ord_ore, text_ord_ore)

State function for max on public.text_ord_ore.

Parameters

NameTypeDescription
state public.text_ord_ore
value public.text_ord_ore

Returns

Type: public.text_ord_ore

public.text_ord_ore


max_sfunc(double_ord_ore, double_ord_ore)

State function for max on public.double_ord_ore.

Parameters

NameTypeDescription
state public.double_ord_ore
value public.double_ord_ore

Returns

Type: public.double_ord_ore

public.double_ord_ore


max_sfunc(timestamp_ord_ope, timestamp_ord_ope)

State function for max on public.timestamp_ord_ope.

Parameters

NameTypeDescription
state public.timestamp_ord_ope
value public.timestamp_ord_ope

Returns

Type: public.timestamp_ord_ope

public.timestamp_ord_ope


max_sfunc(text_ord_ope, text_ord_ope)

State function for max on public.text_ord_ope.

Parameters

NameTypeDescription
state public.text_ord_ope
value public.text_ord_ope

Returns

Type: public.text_ord_ope

public.text_ord_ope


max_sfunc(text_ord, text_ord)

State function for max on public.text_ord.

Parameters

NameTypeDescription
state public.text_ord
value public.text_ord

Returns

Type: public.text_ord

public.text_ord


max_sfunc(real_ord_ope, real_ord_ope)

State function for max on public.real_ord_ope.

Parameters

NameTypeDescription
state public.real_ord_ope
value public.real_ord_ope

Returns

Type: public.real_ord_ope

public.real_ord_ope


max_sfunc(smallint_ord_ore, smallint_ord_ore)

State function for max on public.smallint_ord_ore.

Parameters

NameTypeDescription
state public.smallint_ord_ore
value public.smallint_ord_ore

Returns

Type: public.smallint_ord_ore

public.smallint_ord_ore


max_sfunc(bigint_ord_ore, bigint_ord_ore)

State function for max on public.bigint_ord_ore.

Parameters

NameTypeDescription
state public.bigint_ord_ore
value public.bigint_ord_ore

Returns

Type: public.bigint_ord_ore

public.bigint_ord_ore


max_sfunc(numeric_ord_ore, numeric_ord_ore)

State function for max on public.numeric_ord_ore.

Parameters

NameTypeDescription
state public.numeric_ord_ore
value public.numeric_ord_ore

Returns

Type: public.numeric_ord_ore

public.numeric_ord_ore


State function for max on public.text_search.

Parameters

NameTypeDescription
state public.text_search
value public.text_search

Returns

Type: public.text_search

public.text_search


max_sfunc(double_ord_ope, double_ord_ope)

State function for max on public.double_ord_ope.

Parameters

NameTypeDescription
state public.double_ord_ope
value public.double_ord_ope

Returns

Type: public.double_ord_ope

public.double_ord_ope


max_sfunc(date_ord_ope, date_ord_ope)

State function for max on public.date_ord_ope.

Parameters

NameTypeDescription
state public.date_ord_ope
value public.date_ord_ope

Returns

Type: public.date_ord_ope

public.date_ord_ope


max_sfunc(timestamp_ord, timestamp_ord)

State function for max on public.timestamp_ord.

Parameters

NameTypeDescription
state public.timestamp_ord
value public.timestamp_ord

Returns

Type: public.timestamp_ord

public.timestamp_ord


max_sfunc(date_ord_ore, date_ord_ore)

State function for max on public.date_ord_ore.

Parameters

NameTypeDescription
state public.date_ord_ore
value public.date_ord_ore

Returns

Type: public.date_ord_ore

public.date_ord_ore


max_sfunc(real_ord_ore, real_ord_ore)

State function for max on public.real_ord_ore.

Parameters

NameTypeDescription
state public.real_ord_ore
value public.real_ord_ore

Returns

Type: public.real_ord_ore

public.real_ord_ore


max_sfunc(integer_ord, integer_ord)

State function for max on public.integer_ord.

Parameters

NameTypeDescription
state public.integer_ord
value public.integer_ord

Returns

Type: public.integer_ord

public.integer_ord


max_sfunc(smallint_ord_ope, smallint_ord_ope)

State function for max on public.smallint_ord_ope.

Parameters

NameTypeDescription
state public.smallint_ord_ope
value public.smallint_ord_ope

Returns

Type: public.smallint_ord_ope

public.smallint_ord_ope


max_sfunc(timestamp_ord_ore, timestamp_ord_ore)

State function for max on public.timestamp_ord_ore.

Parameters

NameTypeDescription
state public.timestamp_ord_ore
value public.timestamp_ord_ore

Returns

Type: public.timestamp_ord_ore

public.timestamp_ord_ore


max_sfunc(integer_ord_ope, integer_ord_ope)

State function for max on public.integer_ord_ope.

Parameters

NameTypeDescription
state public.integer_ord_ope
value public.integer_ord_ope

Returns

Type: public.integer_ord_ope

public.integer_ord_ope


max_sfunc(integer_ord_ore, integer_ord_ore)

State function for max on public.integer_ord_ore.

Parameters

NameTypeDescription
state public.integer_ord_ore
value public.integer_ord_ore

Returns

Type: public.integer_ord_ore

public.integer_ord_ore


max_sfunc(double_ord, double_ord)

State function for max on public.double_ord.

Parameters

NameTypeDescription
state public.double_ord
value public.double_ord

Returns

Type: public.double_ord

public.double_ord


max_sfunc(date_ord, date_ord)

State function for max on public.date_ord.

Parameters

NameTypeDescription
state public.date_ord
value public.date_ord

Returns

Type: public.date_ord

public.date_ord


max_sfunc(bigint_ord_ope, bigint_ord_ope)

State function for max on public.bigint_ord_ope.

Parameters

NameTypeDescription
state public.bigint_ord_ope
value public.bigint_ord_ope

Returns

Type: public.bigint_ord_ope

public.bigint_ord_ope


max_sfunc(bigint_ord, bigint_ord)

State function for max on public.bigint_ord.

Parameters

NameTypeDescription
state public.bigint_ord
value public.bigint_ord

Returns

Type: public.bigint_ord

public.bigint_ord


max_sfunc(numeric_ord_ope, numeric_ord_ope)

State function for max on public.numeric_ord_ope.

Parameters

NameTypeDescription
state public.numeric_ord_ope
value public.numeric_ord_ope

Returns

Type: public.numeric_ord_ope

public.numeric_ord_ope


max_sfunc(smallint_ord, smallint_ord)

State function for max on public.smallint_ord.

Parameters

NameTypeDescription
state public.smallint_ord
value public.smallint_ord

Returns

Type: public.smallint_ord

public.smallint_ord


max_sfunc(real_ord, real_ord)

State function for max on public.real_ord.

Parameters

NameTypeDescription
state public.real_ord
value public.real_ord

Returns

Type: public.real_ord

public.real_ord


max_sfunc(numeric_ord, numeric_ord)

State function for max on public.numeric_ord.

Parameters

NameTypeDescription
state public.numeric_ord
value public.numeric_ord

Returns

Type: public.numeric_ord

public.numeric_ord


min_sfunc(text_ord_ore, text_ord_ore)

State function for min on public.text_ord_ore.

Parameters

NameTypeDescription
state public.text_ord_ore
value public.text_ord_ore

Returns

Type: public.text_ord_ore

public.text_ord_ore


min_sfunc(double_ord_ore, double_ord_ore)

State function for min on public.double_ord_ore.

Parameters

NameTypeDescription
state public.double_ord_ore
value public.double_ord_ore

Returns

Type: public.double_ord_ore

public.double_ord_ore


min_sfunc(timestamp_ord_ope, timestamp_ord_ope)

State function for min on public.timestamp_ord_ope.

Parameters

NameTypeDescription
state public.timestamp_ord_ope
value public.timestamp_ord_ope

Returns

Type: public.timestamp_ord_ope

public.timestamp_ord_ope


min_sfunc(text_ord_ope, text_ord_ope)

State function for min on public.text_ord_ope.

Parameters

NameTypeDescription
state public.text_ord_ope
value public.text_ord_ope

Returns

Type: public.text_ord_ope

public.text_ord_ope


min_sfunc(text_ord, text_ord)

State function for min on public.text_ord.

Parameters

NameTypeDescription
state public.text_ord
value public.text_ord

Returns

Type: public.text_ord

public.text_ord


min_sfunc(real_ord_ope, real_ord_ope)

State function for min on public.real_ord_ope.

Parameters

NameTypeDescription
state public.real_ord_ope
value public.real_ord_ope

Returns

Type: public.real_ord_ope

public.real_ord_ope


min_sfunc(smallint_ord_ore, smallint_ord_ore)

State function for min on public.smallint_ord_ore.

Parameters

NameTypeDescription
state public.smallint_ord_ore
value public.smallint_ord_ore

Returns

Type: public.smallint_ord_ore

public.smallint_ord_ore


min_sfunc(bigint_ord_ore, bigint_ord_ore)

State function for min on public.bigint_ord_ore.

Parameters

NameTypeDescription
state public.bigint_ord_ore
value public.bigint_ord_ore

Returns

Type: public.bigint_ord_ore

public.bigint_ord_ore


min_sfunc(numeric_ord_ore, numeric_ord_ore)

State function for min on public.numeric_ord_ore.

Parameters

NameTypeDescription
state public.numeric_ord_ore
value public.numeric_ord_ore

Returns

Type: public.numeric_ord_ore

public.numeric_ord_ore


State function for min on public.text_search.

Parameters

NameTypeDescription
state public.text_search
value public.text_search

Returns

Type: public.text_search

public.text_search


min_sfunc(double_ord_ope, double_ord_ope)

State function for min on public.double_ord_ope.

Parameters

NameTypeDescription
state public.double_ord_ope
value public.double_ord_ope

Returns

Type: public.double_ord_ope

public.double_ord_ope


min_sfunc(date_ord_ope, date_ord_ope)

State function for min on public.date_ord_ope.

Parameters

NameTypeDescription
state public.date_ord_ope
value public.date_ord_ope

Returns

Type: public.date_ord_ope

public.date_ord_ope


min_sfunc(timestamp_ord, timestamp_ord)

State function for min on public.timestamp_ord.

Parameters

NameTypeDescription
state public.timestamp_ord
value public.timestamp_ord

Returns

Type: public.timestamp_ord

public.timestamp_ord


min_sfunc(date_ord_ore, date_ord_ore)

State function for min on public.date_ord_ore.

Parameters

NameTypeDescription
state public.date_ord_ore
value public.date_ord_ore

Returns

Type: public.date_ord_ore

public.date_ord_ore


min_sfunc(real_ord_ore, real_ord_ore)

State function for min on public.real_ord_ore.

Parameters

NameTypeDescription
state public.real_ord_ore
value public.real_ord_ore

Returns

Type: public.real_ord_ore

public.real_ord_ore


min_sfunc(integer_ord, integer_ord)

State function for min on public.integer_ord.

Parameters

NameTypeDescription
state public.integer_ord
value public.integer_ord

Returns

Type: public.integer_ord

public.integer_ord


min_sfunc(smallint_ord_ope, smallint_ord_ope)

State function for min on public.smallint_ord_ope.

Parameters

NameTypeDescription
state public.smallint_ord_ope
value public.smallint_ord_ope

Returns

Type: public.smallint_ord_ope

public.smallint_ord_ope


min_sfunc(timestamp_ord_ore, timestamp_ord_ore)

State function for min on public.timestamp_ord_ore.

Parameters

NameTypeDescription
state public.timestamp_ord_ore
value public.timestamp_ord_ore

Returns

Type: public.timestamp_ord_ore

public.timestamp_ord_ore


min_sfunc(integer_ord_ope, integer_ord_ope)

State function for min on public.integer_ord_ope.

Parameters

NameTypeDescription
state public.integer_ord_ope
value public.integer_ord_ope

Returns

Type: public.integer_ord_ope

public.integer_ord_ope


min_sfunc(integer_ord_ore, integer_ord_ore)

State function for min on public.integer_ord_ore.

Parameters

NameTypeDescription
state public.integer_ord_ore
value public.integer_ord_ore

Returns

Type: public.integer_ord_ore

public.integer_ord_ore


min_sfunc(double_ord, double_ord)

State function for min on public.double_ord.

Parameters

NameTypeDescription
state public.double_ord
value public.double_ord

Returns

Type: public.double_ord

public.double_ord


min_sfunc(date_ord, date_ord)

State function for min on public.date_ord.

Parameters

NameTypeDescription
state public.date_ord
value public.date_ord

Returns

Type: public.date_ord

public.date_ord


min_sfunc(bigint_ord_ope, bigint_ord_ope)

State function for min on public.bigint_ord_ope.

Parameters

NameTypeDescription
state public.bigint_ord_ope
value public.bigint_ord_ope

Returns

Type: public.bigint_ord_ope

public.bigint_ord_ope


min_sfunc(bigint_ord, bigint_ord)

State function for min on public.bigint_ord.

Parameters

NameTypeDescription
state public.bigint_ord
value public.bigint_ord

Returns

Type: public.bigint_ord

public.bigint_ord


min_sfunc(numeric_ord_ope, numeric_ord_ope)

State function for min on public.numeric_ord_ope.

Parameters

NameTypeDescription
state public.numeric_ord_ope
value public.numeric_ord_ope

Returns

Type: public.numeric_ord_ope

public.numeric_ord_ope


min_sfunc(smallint_ord, smallint_ord)

State function for min on public.smallint_ord.

Parameters

NameTypeDescription
state public.smallint_ord
value public.smallint_ord

Returns

Type: public.smallint_ord

public.smallint_ord


min_sfunc(real_ord, real_ord)

State function for min on public.real_ord.

Parameters

NameTypeDescription
state public.real_ord
value public.real_ord

Returns

Type: public.real_ord

public.real_ord


min_sfunc(numeric_ord, numeric_ord)

State function for min on public.numeric_ord.

Parameters

NameTypeDescription
state public.numeric_ord
value public.numeric_ord

Returns

Type: public.numeric_ord

public.numeric_ord


neq(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
ajsonb
double

Returns

Type: boolean

boolean


neq(jsonb)

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
bjsonb

Returns

Type: boolean

boolean


neq()

Unsupported operator blocker for public.double.

Parameters

NameTypeDescription
double
double

Returns

Type: boolean

boolean


neq(jsonb, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
ajsonb
b public.date

Returns

Type: boolean

boolean


neq(date, jsonb)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
bjsonb

Returns

Type: boolean

boolean


neq(date, date)

Unsupported operator blocker for public.date.

Parameters

NameTypeDescription
a public.date
b public.date

Returns

Type: boolean

boolean


neq(jsonb, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
ajsonb
b public.boolean

Returns

Type: boolean

boolean


neq(boolean, jsonb)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
bjsonb

Returns

Type: boolean

boolean


neq(boolean, boolean)

Unsupported operator blocker for public.boolean.

Parameters

NameTypeDescription
a public.boolean
b public.boolean

Returns

Type: boolean

boolean


neq(jsonb, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
ajsonb
b public.numeric

Returns

Type: boolean

boolean


neq(numeric, jsonb)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
bjsonb

Returns

Type: boolean

boolean


neq(numeric, numeric)

Unsupported operator blocker for public.numeric.

Parameters

NameTypeDescription
a public.numeric
b public.numeric

Returns

Type: boolean

boolean


neq(jsonb, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
ajsonb
b public.timestamp

Returns

Type: boolean

boolean


neq(timestamp, jsonb)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
bjsonb

Returns

Type: boolean

boolean


neq(timestamp, timestamp)

Unsupported operator blocker for public.timestamp.

Parameters

NameTypeDescription
a public.timestamp
b public.timestamp

Returns

Type: boolean

boolean


neq(jsonb, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
ajsonb
b public.text_match

Returns

Type: boolean

boolean


neq(text_match, jsonb)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
bjsonb

Returns

Type: boolean

boolean


neq(text_match, text_match)

Unsupported operator blocker for public.text_match.

Parameters

NameTypeDescription
a public.text_match
b public.text_match

Returns

Type: boolean

boolean


neq(jsonb, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
ajsonb
b public.bigint

Returns

Type: boolean

boolean


neq(bigint, jsonb)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
bjsonb

Returns

Type: boolean

boolean


neq(bigint, bigint)

Unsupported operator blocker for public.bigint.

Parameters

NameTypeDescription
a public.bigint
b public.bigint

Returns

Type: boolean

boolean


neq(jsonb, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
ajsonb
b public.smallint

Returns

Type: boolean

boolean


neq(smallint, jsonb)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
bjsonb

Returns

Type: boolean

boolean


neq(smallint, smallint)

Unsupported operator blocker for public.smallint.

Parameters

NameTypeDescription
a public.smallint
b public.smallint

Returns

Type: boolean

boolean


neq(jsonb, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
ajsonb
b public.text

Returns

Type: boolean

boolean


neq(text, jsonb)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
bjsonb

Returns

Type: boolean

boolean


neq(text, text)

Unsupported operator blocker for public.text.

Parameters

NameTypeDescription
a public.text
b public.text

Returns

Type: boolean

boolean


neq(jsonb, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
ajsonb
b public.integer

Returns

Type: boolean

boolean


neq(integer, jsonb)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
bjsonb

Returns

Type: boolean

boolean


neq(integer, integer)

Unsupported operator blocker for public.integer.

Parameters

NameTypeDescription
a public.integer
b public.integer

Returns

Type: boolean

boolean


neq(jsonb, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
ajsonb
b public.real

Returns

Type: boolean

boolean


neq(real, jsonb)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
bjsonb

Returns

Type: boolean

boolean


neq(real, real)

Unsupported operator blocker for public.real.

Parameters

NameTypeDescription
a public.real
b public.real

Returns

Type: boolean

boolean


ope_cllw(jsonb)

Extract CLLW OPE index term from JSONB payload.

Returns the CLLW OPE ciphertext from the op field of an encrypted scalar payload, hex-decoded to the bytea-backed eql_v3_internal.ope_cllw domain.

Inlinable single-statement SQL — the body is a strict expression of the argument (->> and decode are both STRICT), so the planner folds this into the calling query and functional btree indexes built on eql_v3.ord_ope_term(col) (which calls this) engage structurally, the same way the hmac_256 equality chain does.

Missing-op semantics: val ->> 'opis NULL whenop` is absent and the strict chain propagates it, so the extractor returns SQL NULL and btree's NULL handling filters those rows from range queries.

Parameters

NameTypeDescription
valjsonbcontaining encrypted EQL payload

Returns

Type: eql_v3_internal.ope_cllw

eql_v3_internal.ope_cllw Hex-decoded CLLW OPE term, or NULL when op is absent


ore_block_256(jsonb)

Extract ORE block index term from JSONB payload.

Parameters

NameTypeDescription
valjsonbcontaining encrypted EQL payload

Returns

Type: eql_v3_internal.ore_block_256

eql_v3_internal.ore_block_256 ORE block index term

Exceptions

  • if 'ob' field is missing

ore_block_256_eq(ore_block_256, ore_block_256)

Equality backing function for ORE block types.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256
b eql_v3_internal.ore_block_256

ore_block_256_gt(ore_block_256, ore_block_256)

Greater-than backing function for ORE block types.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256
b eql_v3_internal.ore_block_256

ore_block_256_gte(ore_block_256, ore_block_256)

Greater-than-or-equal backing function for ORE block types.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256
b eql_v3_internal.ore_block_256

ore_block_256_lt(ore_block_256, ore_block_256)

Less-than backing function for ORE block types.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256
b eql_v3_internal.ore_block_256

ore_block_256_lte(ore_block_256, ore_block_256)

Less-than-or-equal backing function for ORE block types.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256
b eql_v3_internal.ore_block_256

ore_block_256_neq(ore_block_256, ore_block_256)

Not-equal backing function for ORE block types.

Parameters

NameTypeDescription
a eql_v3_internal.ore_block_256
b eql_v3_internal.ore_block_256

ore_cllw(jsonb)

Extract CLLW ORE index term from raw jsonb.

Returns the CLLW ORE ciphertext from the oc field of a single sv element supplied as raw jsonb. Inlinable single-statement SQL — the planner folds the body into the calling query.

Missing-oc semantics: returns SQL-level NULL (not a composite with NULL bytes) when oc is absent, so btree's NULL handling filters those rows from range queries.

Parameters

NameTypeDescription
valjsonbAn object carrying an oc field

Returns

Type: eql_v3_internal.ore_cllw

eql_v3_internal.ore_cllw Composite carrying the CLLW ciphertext, or NULL when the oc field is absent.

Variants

  • eql_v3_internal.compare_ore_cllw_term

ore_cllw_eq(ore_cllw, ore_cllw)

Equality backing function for eql_v3_internal.ore_cllw.

Parameters

NameTypeDescription
a eql_v3_internal.ore_cllw
b eql_v3_internal.ore_cllw

ore_cllw_gt(ore_cllw, ore_cllw)

Greater-than backing function for eql_v3_internal.ore_cllw.

Parameters

NameTypeDescription
a eql_v3_internal.ore_cllw
b eql_v3_internal.ore_cllw

ore_cllw_gte(ore_cllw, ore_cllw)

Greater-than-or-equal backing function for eql_v3_internal.ore_cllw.

Parameters

NameTypeDescription
a eql_v3_internal.ore_cllw
b eql_v3_internal.ore_cllw

ore_cllw_lt(ore_cllw, ore_cllw)

Less-than backing function for eql_v3_internal.ore_cllw.

Parameters

NameTypeDescription
a eql_v3_internal.ore_cllw
b eql_v3_internal.ore_cllw

ore_cllw_lte(ore_cllw, ore_cllw)

Less-than-or-equal backing function for eql_v3_internal.ore_cllw.

Parameters

NameTypeDescription
a eql_v3_internal.ore_cllw
b eql_v3_internal.ore_cllw

ore_cllw_neq(ore_cllw, ore_cllw)

Not-equal backing function for eql_v3_internal.ore_cllw.

Parameters

NameTypeDescription
a eql_v3_internal.ore_cllw
b eql_v3_internal.ore_cllw

owned_schemas()

Schemas owned by the eql_v3 surface.

Single source of truth for tooling that must enumerate every schema this installer owns (eql_v3.lints(), tasks/pin_search_path_v3.sql), so a future third eql_v3-family schema is one array literal to edit instead of a hardcoded schema-name predicate repeated at every call site. Keep in sync with the SCHEMA / INTERNAL_SCHEMA constants in crates/eql-codegen/src/consts.rs — those drive what codegen emits into each schema; this drives what tooling scans across both.

Returns

Type: name[]

name[] The schema names eql_v3 owns (public + internal).


On this page

FunctionsPrivate FunctionsFunctions->(json, text)ParametersReturns⚠️ Warning>()Parametersciphertext(jsonb)ParametersReturnsExceptionscontained_by(query_text_search, text_search)ParametersReturnscontained_by(text_search, query_text_search)ParametersReturnscontained_by(jsonb, text_match)ParametersReturnscontained_by(text_match, jsonb)ParametersReturnscontained_by(text_match, text_match)ParametersReturnscontained_by(query_text_match, text_match)ParametersReturnscontained_by(text_match, query_text_match)ParametersReturnscontained_by(jsonb, text_search)ParametersReturnscontained_by(text_search, jsonb)ParametersReturnscontained_by(text_search, text_search)ParametersReturnscontains(query_text_search, text_search)ParametersReturnscontains(text_search, query_text_search)ParametersReturnscontains(jsonb, text_match)ParametersReturnscontains(text_match, jsonb)ParametersReturnscontains(text_match, text_match)ParametersReturnscontains(query_text_match, text_match)ParametersReturnscontains(text_match, query_text_match)ParametersReturnscontains(jsonb, text_search)ParametersReturnscontains(text_search, jsonb)ParametersReturnscontains(text_search, text_search)ParametersReturnseq(jsonb, smallint_ord_ore)ParametersReturnseq(smallint_ord_ore, jsonb)ParametersReturnseq(smallint_ord_ore, smallint_ord_ore)ParametersReturnseq(query_bigint_ord_ore, bigint_ord_ore)ParametersReturnseq(bigint_ord_ore, query_bigint_ord_ore)ParametersReturnseq(jsonb, bigint_ord_ore)ParametersReturnseq(bigint_ord_ore, jsonb)ParametersReturnseq(bigint_ord_ore, bigint_ord_ore)ParametersReturnseq(jsonb, real_eq)ParametersReturnseq(real_eq, jsonb)ParametersReturnseq(real_eq, real_eq)ParametersReturnseq(query_date_ord_ore, date_ord_ore)ParametersReturnseq(date_ord_ore, query_date_ord_ore)ParametersReturnseq(jsonb, text_ord)ParametersReturnseq(text_ord, jsonb)ParametersReturnseq(text_ord, text_ord)ParametersReturnseq(jsonb, date_ord)ParametersReturnseq(date_ord, jsonb)ParametersReturnseq(date_ord, date_ord)ParametersReturnseq(jsonb, integer_ord_ore)ParametersReturnseq(integer_ord_ore, jsonb)ParametersReturnseq(integer_ord_ore, integer_ord_ore)ParametersReturnseq(query_text_search, text_search)ParametersReturnseq(text_search, query_text_search)ParametersReturnseq(query_smallint_ord_ope, smallint_ord_ope)ParametersReturnseq(smallint_ord_ope, query_smallint_ord_ope)ParametersReturnseq(jsonb, numeric_eq)ParametersReturnseq(numeric_eq, jsonb)ParametersReturnseq(numeric_eq, numeric_eq)ParametersReturnseq(jsonb, date_eq)ParametersReturnseq(date_eq, jsonb)ParametersReturnseq(date_eq, date_eq)ParametersReturnseq(jsonb, real_ord)ParametersReturnseq(real_ord, jsonb)ParametersReturnseq(real_ord, real_ord)ParametersReturnseq(jsonb, timestamp_eq)ParametersReturnseq(timestamp_eq, jsonb)ParametersReturnseq(timestamp_eq, timestamp_eq)ParametersReturnseq(query_bigint_eq, bigint_eq)ParametersReturnseq(bigint_eq, query_bigint_eq)ParametersReturnseq(query_date_eq, date_eq)ParametersReturnseq(date_eq, query_date_eq)ParametersReturnseq(query_timestamp_eq, timestamp_eq)ParametersReturnseq(timestamp_eq, query_timestamp_eq)ParametersReturnseq(jsonb, text_ord_ope)ParametersReturnseq(text_ord_ope, jsonb)ParametersReturnseq(text_ord_ope, text_ord_ope)ParametersReturnseq(jsonb, double_eq)ParametersReturnseq(double_eq, jsonb)ParametersReturnseq(double_eq, double_eq)ParametersReturnseq(jsonb, smallint_ord)ParametersReturnseq(smallint_ord, jsonb)ParametersReturnseq(smallint_ord, smallint_ord)ParametersReturnseq(query_text_ord, text_ord)ParametersReturnseq(text_ord, query_text_ord)ParametersReturnseq(query_double_ord_ope, double_ord_ope)ParametersReturnseq(double_ord_ope, query_double_ord_ope)ParametersReturnseq(query_numeric_eq, numeric_eq)ParametersReturnseq(numeric_eq, query_numeric_eq)ParametersReturnseq(jsonb, double_ord_ope)ParametersReturnseq(double_ord_ope, jsonb)ParametersReturnseq(double_ord_ope, double_ord_ope)ParametersReturnseq(jsonb, real_ord_ope)ParametersReturnseq(real_ord_ope, jsonb)ParametersReturnseq(real_ord_ope, real_ord_ope)ParametersReturnseq(jsonb, integer_ord_ope)ParametersReturnseq(integer_ord_ope, jsonb)ParametersReturnseq(integer_ord_ope, integer_ord_ope)ParametersReturnseq(jsonb, smallint_ord_ope)ParametersReturnseq(smallint_ord_ope, jsonb)ParametersReturnseq(smallint_ord_ope, smallint_ord_ope)ParametersReturnseq(query_text_eq, text_eq)ParametersReturnseq(text_eq, query_text_eq)ParametersReturnseq(jsonb, timestamp_ord_ore)ParametersReturnseq(timestamp_ord_ore, jsonb)ParametersReturnseq(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnseq(jsonb, numeric_ord_ope)ParametersReturnseq(numeric_ord_ope, jsonb)ParametersReturnseq(numeric_ord_ope, numeric_ord_ope)ParametersReturnseq(jsonb, text_eq)ParametersReturnseq(text_eq, jsonb)ParametersReturnseq(text_eq, text_eq)ParametersReturnseq(query_integer_eq, integer_eq)ParametersReturnseq(integer_eq, query_integer_eq)ParametersReturnseq(query_date_ord, date_ord)ParametersReturnseq(date_ord, query_date_ord)ParametersReturnseq(query_numeric_ord_ore, numeric_ord_ore)ParametersReturnseq(numeric_ord_ore, query_numeric_ord_ore)ParametersReturnseq(query_real_ord, real_ord)ParametersReturnseq(real_ord, query_real_ord)ParametersReturnseq(jsonb, text_ord_ore)ParametersReturnseq(text_ord_ore, jsonb)ParametersReturnseq(text_ord_ore, text_ord_ore)ParametersReturnseq(query_double_eq, double_eq)ParametersReturnseq(double_eq, query_double_eq)ParametersReturnseq(jsonb, bigint_ord)ParametersReturnseq(bigint_ord, jsonb)ParametersReturnseq(bigint_ord, bigint_ord)ParametersReturnseq(query_integer_ord_ore, integer_ord_ore)ParametersReturnseq(integer_ord_ore, query_integer_ord_ore)ParametersReturnseq(jsonb, numeric_ord_ore)ParametersReturnseq(numeric_ord_ore, jsonb)ParametersReturnseq(numeric_ord_ore, numeric_ord_ore)ParametersReturnseq(jsonb, bigint_eq)ParametersReturnseq(bigint_eq, jsonb)ParametersReturnseq(bigint_eq, bigint_eq)ParametersReturnseq(jsonb, real_ord_ore)ParametersReturnseq(real_ord_ore, jsonb)ParametersReturnseq(real_ord_ore, real_ord_ore)ParametersReturnseq(query_text_ord_ore, text_ord_ore)ParametersReturnseq(text_ord_ore, query_text_ord_ore)ParametersReturnseq(query_smallint_ord_ore, smallint_ord_ore)ParametersReturnseq(smallint_ord_ore, query_smallint_ord_ore)ParametersReturnseq(jsonb, double_ord)ParametersReturnseq(double_ord, jsonb)ParametersReturnseq(double_ord, double_ord)ParametersReturnseq(query_timestamp_ord_ope, timestamp_ord_ope)ParametersReturnseq(timestamp_ord_ope, query_timestamp_ord_ope)ParametersReturnseq(query_integer_ord, integer_ord)ParametersReturnseq(integer_ord, query_integer_ord)ParametersReturnseq(query_integer_ord_ope, integer_ord_ope)ParametersReturnseq(integer_ord_ope, query_integer_ord_ope)ParametersReturnseq(jsonb, bigint_ord_ope)ParametersReturnseq(bigint_ord_ope, jsonb)ParametersReturnseq(bigint_ord_ope, bigint_ord_ope)ParametersReturnseq(query_text_ord_ope, text_ord_ope)ParametersReturnseq(text_ord_ope, query_text_ord_ope)ParametersReturnseq(query_smallint_ord, smallint_ord)ParametersReturnseq(smallint_ord, query_smallint_ord)ParametersReturnseq(query_numeric_ord, numeric_ord)ParametersReturnseq(numeric_ord, query_numeric_ord)ParametersReturnseq(query_timestamp_ord_ore, timestamp_ord_ore)ParametersReturnseq(timestamp_ord_ore, query_timestamp_ord_ore)ParametersReturnseq(jsonb, integer_eq)ParametersReturnseq(integer_eq, jsonb)ParametersReturnseq(integer_eq, integer_eq)ParametersReturnseq(jsonb, integer_ord)ParametersReturnseq(integer_ord, jsonb)ParametersReturnseq(integer_ord, integer_ord)ParametersReturnseq(query_timestamp_ord, timestamp_ord)ParametersReturnseq(timestamp_ord, query_timestamp_ord)ParametersReturnseq(jsonb, text_search)ParametersReturnseq(text_search, jsonb)ParametersReturnseq(text_search, text_search)ParametersReturnseq(query_smallint_eq, smallint_eq)ParametersReturnseq(smallint_eq, query_smallint_eq)ParametersReturnseq(jsonb, timestamp_ord)ParametersReturnseq(timestamp_ord, jsonb)ParametersReturnseq(timestamp_ord, timestamp_ord)ParametersReturnseq(query_bigint_ord_ope, bigint_ord_ope)ParametersReturnseq(bigint_ord_ope, query_bigint_ord_ope)ParametersReturnseq(jsonb, smallint_eq)ParametersReturnseq(smallint_eq, jsonb)ParametersReturnseq(smallint_eq, smallint_eq)ParametersReturnseq(query_real_ord_ope, real_ord_ope)ParametersReturnseq(real_ord_ope, query_real_ord_ope)ParametersReturnseq(jsonb, numeric_ord)ParametersReturnseq(numeric_ord, jsonb)ParametersReturnseq(numeric_ord, numeric_ord)ParametersReturnseq(jsonb, date_ord_ope)ParametersReturnseq(date_ord_ope, jsonb)ParametersReturnseq(date_ord_ope, date_ord_ope)ParametersReturnseq(query_double_ord_ore, double_ord_ore)ParametersReturnseq(double_ord_ore, query_double_ord_ore)ParametersReturnseq(jsonb, double_ord_ore)ParametersReturnseq(double_ord_ore, jsonb)ParametersReturnseq(double_ord_ore, double_ord_ore)ParametersReturnseq(query_double_ord, double_ord)ParametersReturnseq(double_ord, query_double_ord)ParametersReturnseq(query_real_ord_ore, real_ord_ore)ParametersReturnseq(real_ord_ore, query_real_ord_ore)ParametersReturnseq(query_date_ord_ope, date_ord_ope)ParametersReturnseq(date_ord_ope, query_date_ord_ope)ParametersReturnseq(jsonb, timestamp_ord_ope)ParametersReturnseq(timestamp_ord_ope, jsonb)ParametersReturnseq(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnseq(query_real_eq, real_eq)ParametersReturnseq(real_eq, query_real_eq)ParametersReturnseq(jsonb, date_ord_ore)ParametersReturnseq(date_ord_ore, jsonb)ParametersReturnseq(date_ord_ore, date_ord_ore)ParametersReturnseq(query_numeric_ord_ope, numeric_ord_ope)ParametersReturnseq(numeric_ord_ope, query_numeric_ord_ope)ParametersReturnseq(query_bigint_ord, bigint_ord)ParametersReturnseq(bigint_ord, query_bigint_ord)ParametersReturnseq_term(real_eq)ParametersReturnseq_term(text_ord)ParametersReturnseq_term(query_text_search)ParametersReturnseq_term(numeric_eq)ParametersReturnseq_term(date_eq)ParametersReturnseq_term(timestamp_eq)ParametersReturnseq_term(query_bigint_eq)ParametersReturnseq_term(query_date_eq)ParametersReturnseq_term(query_timestamp_eq)ParametersReturnseq_term(text_ord_ope)ParametersReturnseq_term(double_eq)ParametersReturnseq_term(query_text_ord)ParametersReturnseq_term(query_numeric_eq)ParametersReturnseq_term(query_text_eq)ParametersReturnseq_term(text_eq)ParametersReturnseq_term(query_integer_eq)ParametersReturnseq_term(text_ord_ore)ParametersReturnseq_term(query_double_eq)ParametersReturnseq_term(bigint_eq)ParametersReturnseq_term(jsonb_entry)ParametersReturnseq_term(query_text_ord_ore)ParametersReturnseq_term(query_text_ord_ope)ParametersReturnseq_term(integer_eq)ParametersReturnseq_term(text_search)ParametersReturnseq_term(query_smallint_eq)ParametersReturnseq_term(smallint_eq)ParametersReturnseq_term(query_real_eq)ParametersReturnseql_v3(json, query_jsonb)ParametersReturnseql_v3(json, json)ParametersReturnsVariantseql_v3_internal(jsonb, smallint_ord_ore)ParametersReturnseql_v3_internal(jsonb, public.smallint_ord_ore)ParametersReturnseql_v3_internal(smallint_ord_ore, smallint_ord_ore)ParametersReturnseql_v3_internal(smallint_ord_ore, text)ParametersReturnseql_v3_internal(smallint_ord_ore, text)ParametersReturnseql_v3_internal(smallint_ord_ore, text)ParametersReturnseql_v3_internal(jsonb, bigint_ord_ore)ParametersReturnseql_v3_internal(jsonb, public.bigint_ord_ore)ParametersReturnseql_v3_internal(bigint_ord_ore, bigint_ord_ore)ParametersReturnseql_v3_internal(bigint_ord_ore, text)ParametersReturnseql_v3_internal(bigint_ord_ore, text)ParametersReturnseql_v3_internal(bigint_ord_ore, text)ParametersReturnseql_v3_internal(jsonb, real_eq)ParametersReturnseql_v3_internal(jsonb, public.real_eq)ParametersReturnseql_v3_internal(real_eq, real_eq)ParametersReturnseql_v3_internal(real_eq, text)ParametersReturnseql_v3_internal(real_eq, text)ParametersReturnseql_v3_internal(real_eq, text)ParametersReturnseql_v3_internal(jsonb, text_ord)ParametersReturnseql_v3_internal(jsonb, public.text_ord)ParametersReturnseql_v3_internal(text_ord, text_ord)ParametersReturnseql_v3_internal(text_ord, text)ParametersReturnseql_v3_internal(text_ord, text)ParametersReturnseql_v3_internal(text_ord, text)ParametersReturnseql_v3_internal(jsonb, date_ord)ParametersReturnseql_v3_internal(jsonb, public.date_ord)ParametersReturnseql_v3_internal(date_ord, date_ord)ParametersReturnseql_v3_internal(date_ord, text)ParametersReturnseql_v3_internal(date_ord, text)ParametersReturnseql_v3_internal(date_ord, text)ParametersReturnseql_v3_internal(jsonb)ParametersReturnseql_v3_internal(jsonb, public.)ParametersReturnseql_v3_internal()ParametersReturnseql_v3_internal(text)ParametersReturnseql_v3_internal(text)ParametersReturnseql_v3_internal(text)ParametersReturnseql_v3_internal(jsonb, date)ParametersReturnseql_v3_internal(jsonb, public.date)ParametersReturnseql_v3_internal(date, date)ParametersReturnseql_v3_internal(date, text)ParametersReturnseql_v3_internal(date, text)ParametersReturnseql_v3_internal(date, text)ParametersReturnseql_v3_internal(jsonb, integer_ord_ore)ParametersReturnseql_v3_internal(jsonb, public.integer_ord_ore)ParametersReturnseql_v3_internal(integer_ord_ore, integer_ord_ore)ParametersReturnseql_v3_internal(integer_ord_ore, text)ParametersReturnseql_v3_internal(integer_ord_ore, text)ParametersReturnseql_v3_internal(integer_ord_ore, text)ParametersReturnseql_v3_internal(jsonb, numeric_eq)ParametersReturnseql_v3_internal(jsonb, public.numeric_eq)ParametersReturnseql_v3_internal(numeric_eq, numeric_eq)ParametersReturnseql_v3_internal(numeric_eq, text)ParametersReturnseql_v3_internal(numeric_eq, text)ParametersReturnseql_v3_internal(numeric_eq, text)ParametersReturnseql_v3_internal(jsonb, date_eq)ParametersReturnseql_v3_internal(jsonb, public.date_eq)ParametersReturnseql_v3_internal(date_eq, date_eq)ParametersReturnseql_v3_internal(date_eq, text)ParametersReturnseql_v3_internal(date_eq, text)ParametersReturnseql_v3_internal(date_eq, text)ParametersReturnseql_v3_internal(jsonb, boolean)ParametersReturnseql_v3_internal(jsonb, public.boolean)ParametersReturnseql_v3_internal(boolean, boolean)ParametersReturnseql_v3_internal(boolean, text)ParametersReturnseql_v3_internal(boolean, text)ParametersReturnseql_v3_internal(boolean, text)ParametersReturnseql_v3_internal(jsonb, numeric)ParametersReturnseql_v3_internal(jsonb, public.numeric)ParametersReturnseql_v3_internal(numeric, numeric)ParametersReturnseql_v3_internal(numeric, text)ParametersReturnseql_v3_internal(numeric, text)ParametersReturnseql_v3_internal(numeric, text)ParametersReturnseql_v3_internal(jsonb, real_ord)ParametersReturnseql_v3_internal(jsonb, public.real_ord)ParametersReturnseql_v3_internal(real_ord, real_ord)ParametersReturnseql_v3_internal(real_ord, text)ParametersReturnseql_v3_internal(real_ord, text)ParametersReturnseql_v3_internal(real_ord, text)ParametersReturnseql_v3_internal(jsonb, timestamp_eq)ParametersReturnseql_v3_internal(jsonb, public.timestamp_eq)ParametersReturnseql_v3_internal(timestamp_eq, timestamp_eq)ParametersReturnseql_v3_internal(timestamp_eq, text)ParametersReturnseql_v3_internal(timestamp_eq, text)ParametersReturnseql_v3_internal(timestamp_eq, text)ParametersReturnseql_v3_internal(jsonb, text_ord_ope)ParametersReturnseql_v3_internal(jsonb, public.text_ord_ope)ParametersReturnseql_v3_internal(text_ord_ope, text_ord_ope)ParametersReturnseql_v3_internal(text_ord_ope, text)ParametersReturnseql_v3_internal(text_ord_ope, text)ParametersReturnseql_v3_internal(text_ord_ope, text)ParametersReturnseql_v3_internal(jsonb, double_eq)ParametersReturnseql_v3_internal(jsonb, public.double_eq)ParametersReturnseql_v3_internal(double_eq, double_eq)ParametersReturnseql_v3_internal(double_eq, text)ParametersReturnseql_v3_internal(double_eq, text)ParametersReturnseql_v3_internal(double_eq, text)ParametersReturnseql_v3_internal(jsonb, smallint_ord)ParametersReturnseql_v3_internal(jsonb, public.smallint_ord)ParametersReturnseql_v3_internal(smallint_ord, smallint_ord)ParametersReturnseql_v3_internal(smallint_ord, text)ParametersReturnseql_v3_internal(smallint_ord, text)ParametersReturnseql_v3_internal(smallint_ord, text)ParametersReturnseql_v3_internal(jsonb, timestamp)ParametersReturnseql_v3_internal(jsonb, public.timestamp)ParametersReturnseql_v3_internal(timestamp, timestamp)ParametersReturnseql_v3_internal(timestamp, text)ParametersReturnseql_v3_internal(timestamp, text)ParametersReturnseql_v3_internal(timestamp, text)ParametersReturnseql_v3_internal(jsonb, double_ord_ope)ParametersReturnseql_v3_internal(jsonb, public.double_ord_ope)ParametersReturnseql_v3_internal(double_ord_ope, double_ord_ope)ParametersReturnseql_v3_internal(double_ord_ope, text)ParametersReturnseql_v3_internal(double_ord_ope, text)ParametersReturnseql_v3_internal(double_ord_ope, text)ParametersReturnseql_v3_internal(jsonb, real_ord_ope)ParametersReturnseql_v3_internal(jsonb, public.real_ord_ope)ParametersReturnseql_v3_internal(real_ord_ope, real_ord_ope)ParametersReturnseql_v3_internal(real_ord_ope, text)ParametersReturnseql_v3_internal(real_ord_ope, text)ParametersReturnseql_v3_internal(real_ord_ope, text)ParametersReturnseql_v3_internal(jsonb, integer_ord_ope)ParametersReturnseql_v3_internal(jsonb, public.integer_ord_ope)ParametersReturnseql_v3_internal(integer_ord_ope, integer_ord_ope)ParametersReturnseql_v3_internal(integer_ord_ope, text)ParametersReturnseql_v3_internal(integer_ord_ope, text)ParametersReturnseql_v3_internal(integer_ord_ope, text)ParametersReturnseql_v3_internal(jsonb, text_match)ParametersReturnseql_v3_internal(jsonb, public.text_match)ParametersReturnseql_v3_internal(text_match, text_match)ParametersReturnseql_v3_internal(text_match, text)ParametersReturnseql_v3_internal(text_match, text)ParametersReturnseql_v3_internal(text_match, text)ParametersReturnseql_v3_internal(jsonb, smallint_ord_ope)ParametersReturnseql_v3_internal(jsonb, public.smallint_ord_ope)ParametersReturnseql_v3_internal(smallint_ord_ope, smallint_ord_ope)ParametersReturnseql_v3_internal(smallint_ord_ope, text)ParametersReturnseql_v3_internal(smallint_ord_ope, text)ParametersReturnseql_v3_internal(smallint_ord_ope, text)ParametersReturnseql_v3_internal(jsonb, timestamp_ord_ore)ParametersReturnseql_v3_internal(jsonb, public.timestamp_ord_ore)ParametersReturnseql_v3_internal(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnseql_v3_internal(timestamp_ord_ore, text)ParametersReturnseql_v3_internal(timestamp_ord_ore, text)ParametersReturnseql_v3_internal(timestamp_ord_ore, text)ParametersReturnseql_v3_internal(jsonb, numeric_ord_ope)ParametersReturnseql_v3_internal(jsonb, public.numeric_ord_ope)ParametersReturnseql_v3_internal(numeric_ord_ope, numeric_ord_ope)ParametersReturnseql_v3_internal(numeric_ord_ope, text)ParametersReturnseql_v3_internal(numeric_ord_ope, text)ParametersReturnseql_v3_internal(numeric_ord_ope, text)ParametersReturnseql_v3_internal(jsonb, text_eq)ParametersReturnseql_v3_internal(jsonb, public.text_eq)ParametersReturnseql_v3_internal(text_eq, text_eq)ParametersReturnseql_v3_internal(text_eq, text)ParametersReturnseql_v3_internal(text_eq, text)ParametersReturnseql_v3_internal(text_eq, text)ParametersReturnseql_v3_internal(jsonb, text_ord_ore)ParametersReturnseql_v3_internal(jsonb, public.text_ord_ore)ParametersReturnseql_v3_internal(text_ord_ore, text_ord_ore)ParametersReturnseql_v3_internal(text_ord_ore, text)ParametersReturnseql_v3_internal(text_ord_ore, text)ParametersReturnseql_v3_internal(text_ord_ore, text)ParametersReturnseql_v3_internal(jsonb, bigint_ord)ParametersReturnseql_v3_internal(jsonb, public.bigint_ord)ParametersReturnseql_v3_internal(bigint_ord, bigint_ord)ParametersReturnseql_v3_internal(bigint_ord, text)ParametersReturnseql_v3_internal(bigint_ord, text)ParametersReturnseql_v3_internal(bigint_ord, text)ParametersReturnseql_v3_internal(jsonb, numeric_ord_ore)ParametersReturnseql_v3_internal(jsonb, public.numeric_ord_ore)ParametersReturnseql_v3_internal(numeric_ord_ore, numeric_ord_ore)ParametersReturnseql_v3_internal(numeric_ord_ore, text)ParametersReturnseql_v3_internal(numeric_ord_ore, text)ParametersReturnseql_v3_internal(numeric_ord_ore, text)ParametersReturnseql_v3_internal(jsonb, bigint_eq)ParametersReturnseql_v3_internal(jsonb, public.bigint_eq)ParametersReturnseql_v3_internal(bigint_eq, bigint_eq)ParametersReturnseql_v3_internal(bigint_eq, text)ParametersReturnseql_v3_internal(bigint_eq, text)ParametersReturnseql_v3_internal(bigint_eq, text)ParametersReturnseql_v3_internal(jsonb, real_ord_ore)ParametersReturnseql_v3_internal(jsonb, public.real_ord_ore)ParametersReturnseql_v3_internal(real_ord_ore, real_ord_ore)ParametersReturnseql_v3_internal(real_ord_ore, text)ParametersReturnseql_v3_internal(real_ord_ore, text)ParametersReturnseql_v3_internal(real_ord_ore, text)ParametersReturnseql_v3_internal(jsonb, double_ord)ParametersReturnseql_v3_internal(jsonb, public.double_ord)ParametersReturnseql_v3_internal(double_ord, double_ord)ParametersReturnseql_v3_internal(double_ord, text)ParametersReturnseql_v3_internal(double_ord, text)ParametersReturnseql_v3_internal(double_ord, text)ParametersReturnseql_v3_internal(jsonb, bigint)ParametersReturnseql_v3_internal(jsonb, public.bigint)ParametersReturnseql_v3_internal(bigint, bigint)ParametersReturnseql_v3_internal(bigint, text)ParametersReturnseql_v3_internal(bigint, text)ParametersReturnseql_v3_internal(bigint, text)ParametersReturnseql_v3_internal(jsonb, bigint_ord_ope)ParametersReturnseql_v3_internal(jsonb, public.bigint_ord_ope)ParametersReturnseql_v3_internal(bigint_ord_ope, bigint_ord_ope)ParametersReturnseql_v3_internal(bigint_ord_ope, text)ParametersReturnseql_v3_internal(bigint_ord_ope, text)ParametersReturnseql_v3_internal(bigint_ord_ope, text)ParametersReturnseql_v3_internal(jsonb, smallint)ParametersReturnseql_v3_internal(jsonb, public.smallint)ParametersReturnseql_v3_internal(smallint, smallint)ParametersReturnseql_v3_internal(smallint, text)ParametersReturnseql_v3_internal(smallint, text)ParametersReturnseql_v3_internal(smallint, text)ParametersReturnseql_v3_internal(jsonb, text)ParametersReturnseql_v3_internal(jsonb, public.text)ParametersReturnseql_v3_internal(text, text)ParametersReturnseql_v3_internal(text, text)ParametersReturnseql_v3_internal(text, text)ParametersReturnseql_v3_internal(text, text)ParametersReturnseql_v3_internal(jsonb, integer_eq)ParametersReturnseql_v3_internal(jsonb, public.integer_eq)ParametersReturnseql_v3_internal(integer_eq, integer_eq)ParametersReturnseql_v3_internal(integer_eq, text)ParametersReturnseql_v3_internal(integer_eq, text)ParametersReturnseql_v3_internal(integer_eq, text)ParametersReturnseql_v3_internal(jsonb, integer_ord)ParametersReturnseql_v3_internal(jsonb, public.integer_ord)ParametersReturnseql_v3_internal(integer_ord, integer_ord)ParametersReturnseql_v3_internal(integer_ord, text)ParametersReturnseql_v3_internal(integer_ord, text)ParametersReturnseql_v3_internal(integer_ord, text)ParametersReturnseql_v3_internal(jsonb, text_search)ParametersReturnseql_v3_internal(jsonb, public.text_search)ParametersReturnseql_v3_internal(text_search, text_search)ParametersReturnseql_v3_internal(text_search, text)ParametersReturnseql_v3_internal(text_search, text)ParametersReturnseql_v3_internal(text_search, text)ParametersReturnseql_v3_internal(jsonb, timestamp_ord)ParametersReturnseql_v3_internal(jsonb, public.timestamp_ord)ParametersReturnseql_v3_internal(timestamp_ord, timestamp_ord)ParametersReturnseql_v3_internal(timestamp_ord, text)ParametersReturnseql_v3_internal(timestamp_ord, text)ParametersReturnseql_v3_internal(timestamp_ord, text)ParametersReturnseql_v3_internal(jsonb, smallint_eq)ParametersReturnseql_v3_internal(jsonb, public.smallint_eq)ParametersReturnseql_v3_internal(smallint_eq, smallint_eq)ParametersReturnseql_v3_internal(smallint_eq, text)ParametersReturnseql_v3_internal(smallint_eq, text)ParametersReturnseql_v3_internal(smallint_eq, text)ParametersReturnseql_v3_internal(jsonb, numeric_ord)ParametersReturnseql_v3_internal(jsonb, public.numeric_ord)ParametersReturnseql_v3_internal(numeric_ord, numeric_ord)ParametersReturnseql_v3_internal(numeric_ord, text)ParametersReturnseql_v3_internal(numeric_ord, text)ParametersReturnseql_v3_internal(numeric_ord, text)ParametersReturnseql_v3_internal(jsonb, date_ord_ope)ParametersReturnseql_v3_internal(jsonb, public.date_ord_ope)ParametersReturnseql_v3_internal(date_ord_ope, date_ord_ope)ParametersReturnseql_v3_internal(date_ord_ope, text)ParametersReturnseql_v3_internal(date_ord_ope, text)ParametersReturnseql_v3_internal(date_ord_ope, text)ParametersReturnseql_v3_internal(jsonb, double_ord_ore)ParametersReturnseql_v3_internal(jsonb, public.double_ord_ore)ParametersReturnseql_v3_internal(double_ord_ore, double_ord_ore)ParametersReturnseql_v3_internal(double_ord_ore, text)ParametersReturnseql_v3_internal(double_ord_ore, text)ParametersReturnseql_v3_internal(double_ord_ore, text)ParametersReturnseql_v3_internal(jsonb, timestamp_ord_ope)ParametersReturnseql_v3_internal(jsonb, public.timestamp_ord_ope)ParametersReturnseql_v3_internal(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnseql_v3_internal(timestamp_ord_ope, text)ParametersReturnseql_v3_internal(timestamp_ord_ope, text)ParametersReturnseql_v3_internal(timestamp_ord_ope, text)ParametersReturnseql_v3_internal(jsonb, integer)ParametersReturnseql_v3_internal(jsonb, public.integer)ParametersReturnseql_v3_internal(integer, integer)ParametersReturnseql_v3_internal(integer, text)ParametersReturnseql_v3_internal(integer, text)ParametersReturnseql_v3_internal(integer, text)ParametersReturnseql_v3_internal(jsonb, date_ord_ore)ParametersReturnseql_v3_internal(jsonb, public.date_ord_ore)ParametersReturnseql_v3_internal(date_ord_ore, date_ord_ore)ParametersReturnseql_v3_internal(date_ord_ore, text)ParametersReturnseql_v3_internal(date_ord_ore, text)ParametersReturnseql_v3_internal(date_ord_ore, text)ParametersReturnseql_v3_internal(jsonb, real)ParametersReturnseql_v3_internal(jsonb, public.real)ParametersReturnseql_v3_internal(real, real)ParametersReturnseql_v3_internal(real, text)ParametersReturnseql_v3_internal(real, text)ParametersReturnseql_v3_internal(real, text)ParametersReturnseql_v3_is_valid_ste_vec_document_payload(jsonb)Parameterseql_v3_is_valid_ste_vec_entry_payload(jsonb)Parameterseql_v3_is_valid_ste_vec_query_payload(jsonb)Parametersgt(jsonb, smallint_ord_ore)ParametersReturnsgt(smallint_ord_ore, jsonb)ParametersReturnsgt(smallint_ord_ore, smallint_ord_ore)ParametersReturnsgt(query_bigint_ord_ore, bigint_ord_ore)ParametersReturnsgt(bigint_ord_ore, query_bigint_ord_ore)ParametersReturnsgt(jsonb, bigint_ord_ore)ParametersReturnsgt(bigint_ord_ore, jsonb)ParametersReturnsgt(bigint_ord_ore, bigint_ord_ore)ParametersReturnsgt(query_date_ord_ore, date_ord_ore)ParametersReturnsgt(date_ord_ore, query_date_ord_ore)ParametersReturnsgt(jsonb, text_ord)ParametersReturnsgt(text_ord, jsonb)ParametersReturnsgt(text_ord, text_ord)ParametersReturnsgt(jsonb, date_ord)ParametersReturnsgt(date_ord, jsonb)ParametersReturnsgt(date_ord, date_ord)ParametersReturnsgt(jsonb, integer_ord_ore)ParametersReturnsgt(integer_ord_ore, jsonb)ParametersReturnsgt(integer_ord_ore, integer_ord_ore)ParametersReturnsgt(query_text_search, text_search)ParametersReturnsgt(text_search, query_text_search)ParametersReturnsgt(query_smallint_ord_ope, smallint_ord_ope)ParametersReturnsgt(smallint_ord_ope, query_smallint_ord_ope)ParametersReturnsgt(jsonb, real_ord)ParametersReturnsgt(real_ord, jsonb)ParametersReturnsgt(real_ord, real_ord)ParametersReturnsgt(jsonb, text_ord_ope)ParametersReturnsgt(text_ord_ope, jsonb)ParametersReturnsgt(text_ord_ope, text_ord_ope)ParametersReturnsgt(jsonb, smallint_ord)ParametersReturnsgt(smallint_ord, jsonb)ParametersReturnsgt(smallint_ord, smallint_ord)ParametersReturnsgt(query_text_ord, text_ord)ParametersReturnsgt(text_ord, query_text_ord)ParametersReturnsgt(query_double_ord_ope, double_ord_ope)ParametersReturnsgt(double_ord_ope, query_double_ord_ope)ParametersReturnsgt(jsonb, double_ord_ope)ParametersReturnsgt(double_ord_ope, jsonb)ParametersReturnsgt(double_ord_ope, double_ord_ope)ParametersReturnsgt(jsonb, real_ord_ope)ParametersReturnsgt(real_ord_ope, jsonb)ParametersReturnsgt(real_ord_ope, real_ord_ope)ParametersReturnsgt(jsonb, integer_ord_ope)ParametersReturnsgt(integer_ord_ope, jsonb)ParametersReturnsgt(integer_ord_ope, integer_ord_ope)ParametersReturnsgt(jsonb, smallint_ord_ope)ParametersReturnsgt(smallint_ord_ope, jsonb)ParametersReturnsgt(smallint_ord_ope, smallint_ord_ope)ParametersReturnsgt(jsonb, timestamp_ord_ore)ParametersReturnsgt(timestamp_ord_ore, jsonb)ParametersReturnsgt(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnsgt(jsonb, numeric_ord_ope)ParametersReturnsgt(numeric_ord_ope, jsonb)ParametersReturnsgt(numeric_ord_ope, numeric_ord_ope)ParametersReturnsgt(query_date_ord, date_ord)ParametersReturnsgt(date_ord, query_date_ord)ParametersReturnsgt(query_numeric_ord_ore, numeric_ord_ore)ParametersReturnsgt(numeric_ord_ore, query_numeric_ord_ore)ParametersReturnsgt(query_real_ord, real_ord)ParametersReturnsgt(real_ord, query_real_ord)ParametersReturnsgt(jsonb, text_ord_ore)ParametersReturnsgt(text_ord_ore, jsonb)ParametersReturnsgt(text_ord_ore, text_ord_ore)ParametersReturnsgt(jsonb, bigint_ord)ParametersReturnsgt(bigint_ord, jsonb)ParametersReturnsgt(bigint_ord, bigint_ord)ParametersReturnsgt(query_integer_ord_ore, integer_ord_ore)ParametersReturnsgt(integer_ord_ore, query_integer_ord_ore)ParametersReturnsgt(jsonb, numeric_ord_ore)ParametersReturnsgt(numeric_ord_ore, jsonb)ParametersReturnsgt(numeric_ord_ore, numeric_ord_ore)ParametersReturnsgt(jsonb, real_ord_ore)ParametersReturnsgt(real_ord_ore, jsonb)ParametersReturnsgt(real_ord_ore, real_ord_ore)ParametersReturnsgt(query_text_ord_ore, text_ord_ore)ParametersReturnsgt(text_ord_ore, query_text_ord_ore)ParametersReturnsgt(query_smallint_ord_ore, smallint_ord_ore)ParametersReturnsgt(smallint_ord_ore, query_smallint_ord_ore)ParametersReturnsgt(jsonb, double_ord)ParametersReturnsgt(double_ord, jsonb)ParametersReturnsgt(double_ord, double_ord)ParametersReturnsgt(query_timestamp_ord_ope, timestamp_ord_ope)ParametersReturnsgt(timestamp_ord_ope, query_timestamp_ord_ope)ParametersReturnsgt(query_integer_ord, integer_ord)ParametersReturnsgt(integer_ord, query_integer_ord)ParametersReturnsgt(query_integer_ord_ope, integer_ord_ope)ParametersReturnsgt(integer_ord_ope, query_integer_ord_ope)ParametersReturnsgt(jsonb, bigint_ord_ope)ParametersReturnsgt(bigint_ord_ope, jsonb)ParametersReturnsgt(bigint_ord_ope, bigint_ord_ope)ParametersReturnsgt(query_text_ord_ope, text_ord_ope)ParametersReturnsgt(text_ord_ope, query_text_ord_ope)ParametersReturnsgt(query_smallint_ord, smallint_ord)ParametersReturnsgt(smallint_ord, query_smallint_ord)ParametersReturnsgt(query_numeric_ord, numeric_ord)ParametersReturnsgt(numeric_ord, query_numeric_ord)ParametersReturnsgt(query_timestamp_ord_ore, timestamp_ord_ore)ParametersReturnsgt(timestamp_ord_ore, query_timestamp_ord_ore)ParametersReturnsgt(jsonb, integer_ord)ParametersReturnsgt(integer_ord, jsonb)ParametersReturnsgt(integer_ord, integer_ord)ParametersReturnsgt(query_timestamp_ord, timestamp_ord)ParametersReturnsgt(timestamp_ord, query_timestamp_ord)ParametersReturnsgt(jsonb, text_search)ParametersReturnsgt(text_search, jsonb)ParametersReturnsgt(text_search, text_search)ParametersReturnsgt(jsonb, timestamp_ord)ParametersReturnsgt(timestamp_ord, jsonb)ParametersReturnsgt(timestamp_ord, timestamp_ord)ParametersReturnsgt(query_bigint_ord_ope, bigint_ord_ope)ParametersReturnsgt(bigint_ord_ope, query_bigint_ord_ope)ParametersReturnsgt(query_real_ord_ope, real_ord_ope)ParametersReturnsgt(real_ord_ope, query_real_ord_ope)ParametersReturnsgt(jsonb, numeric_ord)ParametersReturnsgt(numeric_ord, jsonb)ParametersReturnsgt(numeric_ord, numeric_ord)ParametersReturnsgt(jsonb, date_ord_ope)ParametersReturnsgt(date_ord_ope, jsonb)ParametersReturnsgt(date_ord_ope, date_ord_ope)ParametersReturnsgt(query_double_ord_ore, double_ord_ore)ParametersReturnsgt(double_ord_ore, query_double_ord_ore)ParametersReturnsgt(jsonb, double_ord_ore)ParametersReturnsgt(double_ord_ore, jsonb)ParametersReturnsgt(double_ord_ore, double_ord_ore)ParametersReturnsgt(query_double_ord, double_ord)ParametersReturnsgt(double_ord, query_double_ord)ParametersReturnsgt(query_real_ord_ore, real_ord_ore)ParametersReturnsgt(real_ord_ore, query_real_ord_ore)ParametersReturnsgt(query_date_ord_ope, date_ord_ope)ParametersReturnsgt(date_ord_ope, query_date_ord_ope)ParametersReturnsgt(jsonb, timestamp_ord_ope)ParametersReturnsgt(timestamp_ord_ope, jsonb)ParametersReturnsgt(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnsgt(jsonb, date_ord_ore)ParametersReturnsgt(date_ord_ore, jsonb)ParametersReturnsgt(date_ord_ore, date_ord_ore)ParametersReturnsgt(query_numeric_ord_ope, numeric_ord_ope)ParametersReturnsgt(numeric_ord_ope, query_numeric_ord_ope)ParametersReturnsgt(query_bigint_ord, bigint_ord)ParametersReturnsgt(bigint_ord, query_bigint_ord)ParametersReturnsgte(jsonb, smallint_ord_ore)ParametersReturnsgte(smallint_ord_ore, jsonb)ParametersReturnsgte(smallint_ord_ore, smallint_ord_ore)ParametersReturnsgte(query_bigint_ord_ore, bigint_ord_ore)ParametersReturnsgte(bigint_ord_ore, query_bigint_ord_ore)ParametersReturnsgte(jsonb, bigint_ord_ore)ParametersReturnsgte(bigint_ord_ore, jsonb)ParametersReturnsgte(bigint_ord_ore, bigint_ord_ore)ParametersReturnsgte(query_date_ord_ore, date_ord_ore)ParametersReturnsgte(date_ord_ore, query_date_ord_ore)ParametersReturnsgte(jsonb, text_ord)ParametersReturnsgte(text_ord, jsonb)ParametersReturnsgte(text_ord, text_ord)ParametersReturnsgte(jsonb, date_ord)ParametersReturnsgte(date_ord, jsonb)ParametersReturnsgte(date_ord, date_ord)ParametersReturnsgte(jsonb, integer_ord_ore)ParametersReturnsgte(integer_ord_ore, jsonb)ParametersReturnsgte(integer_ord_ore, integer_ord_ore)ParametersReturnsgte(query_text_search, text_search)ParametersReturnsgte(text_search, query_text_search)ParametersReturnsgte(query_smallint_ord_ope, smallint_ord_ope)ParametersReturnsgte(smallint_ord_ope, query_smallint_ord_ope)ParametersReturnsgte(jsonb, real_ord)ParametersReturnsgte(real_ord, jsonb)ParametersReturnsgte(real_ord, real_ord)ParametersReturnsgte(jsonb, text_ord_ope)ParametersReturnsgte(text_ord_ope, jsonb)ParametersReturnsgte(text_ord_ope, text_ord_ope)ParametersReturnsgte(jsonb, smallint_ord)ParametersReturnsgte(smallint_ord, jsonb)ParametersReturnsgte(smallint_ord, smallint_ord)ParametersReturnsgte(query_text_ord, text_ord)ParametersReturnsgte(text_ord, query_text_ord)ParametersReturnsgte(query_double_ord_ope, double_ord_ope)ParametersReturnsgte(double_ord_ope, query_double_ord_ope)ParametersReturnsgte(jsonb, double_ord_ope)ParametersReturnsgte(double_ord_ope, jsonb)ParametersReturnsgte(double_ord_ope, double_ord_ope)ParametersReturnsgte(jsonb, real_ord_ope)ParametersReturnsgte(real_ord_ope, jsonb)ParametersReturnsgte(real_ord_ope, real_ord_ope)ParametersReturnsgte(jsonb, integer_ord_ope)ParametersReturnsgte(integer_ord_ope, jsonb)ParametersReturnsgte(integer_ord_ope, integer_ord_ope)ParametersReturnsgte(jsonb, smallint_ord_ope)ParametersReturnsgte(smallint_ord_ope, jsonb)ParametersReturnsgte(smallint_ord_ope, smallint_ord_ope)ParametersReturnsgte(jsonb, timestamp_ord_ore)ParametersReturnsgte(timestamp_ord_ore, jsonb)ParametersReturnsgte(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnsgte(jsonb, numeric_ord_ope)ParametersReturnsgte(numeric_ord_ope, jsonb)ParametersReturnsgte(numeric_ord_ope, numeric_ord_ope)ParametersReturnsgte(query_date_ord, date_ord)ParametersReturnsgte(date_ord, query_date_ord)ParametersReturnsgte(query_numeric_ord_ore, numeric_ord_ore)ParametersReturnsgte(numeric_ord_ore, query_numeric_ord_ore)ParametersReturnsgte(query_real_ord, real_ord)ParametersReturnsgte(real_ord, query_real_ord)ParametersReturnsgte(jsonb, text_ord_ore)ParametersReturnsgte(text_ord_ore, jsonb)ParametersReturnsgte(text_ord_ore, text_ord_ore)ParametersReturnsgte(jsonb, bigint_ord)ParametersReturnsgte(bigint_ord, jsonb)ParametersReturnsgte(bigint_ord, bigint_ord)ParametersReturnsgte(query_integer_ord_ore, integer_ord_ore)ParametersReturnsgte(integer_ord_ore, query_integer_ord_ore)ParametersReturnsgte(jsonb, numeric_ord_ore)ParametersReturnsgte(numeric_ord_ore, jsonb)ParametersReturnsgte(numeric_ord_ore, numeric_ord_ore)ParametersReturnsgte(jsonb, real_ord_ore)ParametersReturnsgte(real_ord_ore, jsonb)ParametersReturnsgte(real_ord_ore, real_ord_ore)ParametersReturnsgte(query_text_ord_ore, text_ord_ore)ParametersReturnsgte(text_ord_ore, query_text_ord_ore)ParametersReturnsgte(query_smallint_ord_ore, smallint_ord_ore)ParametersReturnsgte(smallint_ord_ore, query_smallint_ord_ore)ParametersReturnsgte(jsonb, double_ord)ParametersReturnsgte(double_ord, jsonb)ParametersReturnsgte(double_ord, double_ord)ParametersReturnsgte(query_timestamp_ord_ope, timestamp_ord_ope)ParametersReturnsgte(timestamp_ord_ope, query_timestamp_ord_ope)ParametersReturnsgte(query_integer_ord, integer_ord)ParametersReturnsgte(integer_ord, query_integer_ord)ParametersReturnsgte(query_integer_ord_ope, integer_ord_ope)ParametersReturnsgte(integer_ord_ope, query_integer_ord_ope)ParametersReturnsgte(jsonb, bigint_ord_ope)ParametersReturnsgte(bigint_ord_ope, jsonb)ParametersReturnsgte(bigint_ord_ope, bigint_ord_ope)ParametersReturnsgte(query_text_ord_ope, text_ord_ope)ParametersReturnsgte(text_ord_ope, query_text_ord_ope)ParametersReturnsgte(query_smallint_ord, smallint_ord)ParametersReturnsgte(smallint_ord, query_smallint_ord)ParametersReturnsgte(query_numeric_ord, numeric_ord)ParametersReturnsgte(numeric_ord, query_numeric_ord)ParametersReturnsgte(query_timestamp_ord_ore, timestamp_ord_ore)ParametersReturnsgte(timestamp_ord_ore, query_timestamp_ord_ore)ParametersReturnsgte(jsonb, integer_ord)ParametersReturnsgte(integer_ord, jsonb)ParametersReturnsgte(integer_ord, integer_ord)ParametersReturnsgte(query_timestamp_ord, timestamp_ord)ParametersReturnsgte(timestamp_ord, query_timestamp_ord)ParametersReturnsgte(jsonb, text_search)ParametersReturnsgte(text_search, jsonb)ParametersReturnsgte(text_search, text_search)ParametersReturnsgte(jsonb, timestamp_ord)ParametersReturnsgte(timestamp_ord, jsonb)ParametersReturnsgte(timestamp_ord, timestamp_ord)ParametersReturnsgte(query_bigint_ord_ope, bigint_ord_ope)ParametersReturnsgte(bigint_ord_ope, query_bigint_ord_ope)ParametersReturnsgte(query_real_ord_ope, real_ord_ope)ParametersReturnsgte(real_ord_ope, query_real_ord_ope)ParametersReturnsgte(jsonb, numeric_ord)ParametersReturnsgte(numeric_ord, jsonb)ParametersReturnsgte(numeric_ord, numeric_ord)ParametersReturnsgte(jsonb, date_ord_ope)ParametersReturnsgte(date_ord_ope, jsonb)ParametersReturnsgte(date_ord_ope, date_ord_ope)ParametersReturnsgte(query_double_ord_ore, double_ord_ore)ParametersReturnsgte(double_ord_ore, query_double_ord_ore)ParametersReturnsgte(jsonb, double_ord_ore)ParametersReturnsgte(double_ord_ore, jsonb)ParametersReturnsgte(double_ord_ore, double_ord_ore)ParametersReturnsgte(query_double_ord, double_ord)ParametersReturnsgte(double_ord, query_double_ord)ParametersReturnsgte(query_real_ord_ore, real_ord_ore)ParametersReturnsgte(real_ord_ore, query_real_ord_ore)ParametersReturnsgte(query_date_ord_ope, date_ord_ope)ParametersReturnsgte(date_ord_ope, query_date_ord_ope)ParametersReturnsgte(jsonb, timestamp_ord_ope)ParametersReturnsgte(timestamp_ord_ope, jsonb)ParametersReturnsgte(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnsgte(jsonb, date_ord_ore)ParametersReturnsgte(date_ord_ore, jsonb)ParametersReturnsgte(date_ord_ore, date_ord_ore)ParametersReturnsgte(query_numeric_ord_ope, numeric_ord_ope)ParametersReturnsgte(numeric_ord_ope, query_numeric_ord_ope)ParametersReturnsgte(query_bigint_ord, bigint_ord)ParametersReturnsgte(bigint_ord, query_bigint_ord)ParametersReturnshas_ore_cllw(jsonb_entry)ParametersReturnsjsonb_array(jsonb)ParametersReturnsjsonb_array_elements(jsonb)ParametersReturnsExceptionsjsonb_array_elements_text(jsonb)ParametersReturnsExceptionsjsonb_array_length(jsonb)ParametersReturnsExceptionsjsonb_contained_by(jsonb, jsonb)ParametersReturnsNotejsonb_contains(jsonb, jsonb)ParametersReturnsNotejsonb_path_exists(jsonb, text)ParametersReturnsjsonb_path_query(jsonb, text)ParametersReturnsVariantsjsonb_path_query_first(jsonb, text)ParametersReturnslt(jsonb, smallint_ord_ore)ParametersReturnslt(smallint_ord_ore, jsonb)ParametersReturnslt(smallint_ord_ore, smallint_ord_ore)ParametersReturnslt(query_bigint_ord_ore, bigint_ord_ore)ParametersReturnslt(bigint_ord_ore, query_bigint_ord_ore)ParametersReturnslt(jsonb, bigint_ord_ore)ParametersReturnslt(bigint_ord_ore, jsonb)ParametersReturnslt(bigint_ord_ore, bigint_ord_ore)ParametersReturnslt(query_date_ord_ore, date_ord_ore)ParametersReturnslt(date_ord_ore, query_date_ord_ore)ParametersReturnslt(jsonb, text_ord)ParametersReturnslt(text_ord, jsonb)ParametersReturnslt(text_ord, text_ord)ParametersReturnslt(jsonb, date_ord)ParametersReturnslt(date_ord, jsonb)ParametersReturnslt(date_ord, date_ord)ParametersReturnslt(jsonb, integer_ord_ore)ParametersReturnslt(integer_ord_ore, jsonb)ParametersReturnslt(integer_ord_ore, integer_ord_ore)ParametersReturnslt(query_text_search, text_search)ParametersReturnslt(text_search, query_text_search)ParametersReturnslt(query_smallint_ord_ope, smallint_ord_ope)ParametersReturnslt(smallint_ord_ope, query_smallint_ord_ope)ParametersReturnslt(jsonb, real_ord)ParametersReturnslt(real_ord, jsonb)ParametersReturnslt(real_ord, real_ord)ParametersReturnslt(jsonb, text_ord_ope)ParametersReturnslt(text_ord_ope, jsonb)ParametersReturnslt(text_ord_ope, text_ord_ope)ParametersReturnslt(jsonb, smallint_ord)ParametersReturnslt(smallint_ord, jsonb)ParametersReturnslt(smallint_ord, smallint_ord)ParametersReturnslt(query_text_ord, text_ord)ParametersReturnslt(text_ord, query_text_ord)ParametersReturnslt(query_double_ord_ope, double_ord_ope)ParametersReturnslt(double_ord_ope, query_double_ord_ope)ParametersReturnslt(jsonb, double_ord_ope)ParametersReturnslt(double_ord_ope, jsonb)ParametersReturnslt(double_ord_ope, double_ord_ope)ParametersReturnslt(jsonb, real_ord_ope)ParametersReturnslt(real_ord_ope, jsonb)ParametersReturnslt(real_ord_ope, real_ord_ope)ParametersReturnslt(jsonb, integer_ord_ope)ParametersReturnslt(integer_ord_ope, jsonb)ParametersReturnslt(integer_ord_ope, integer_ord_ope)ParametersReturnslt(jsonb, smallint_ord_ope)ParametersReturnslt(smallint_ord_ope, jsonb)ParametersReturnslt(smallint_ord_ope, smallint_ord_ope)ParametersReturnslt(jsonb, timestamp_ord_ore)ParametersReturnslt(timestamp_ord_ore, jsonb)ParametersReturnslt(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnslt(jsonb, numeric_ord_ope)ParametersReturnslt(numeric_ord_ope, jsonb)ParametersReturnslt(numeric_ord_ope, numeric_ord_ope)ParametersReturnslt(query_date_ord, date_ord)ParametersReturnslt(date_ord, query_date_ord)ParametersReturnslt(query_numeric_ord_ore, numeric_ord_ore)ParametersReturnslt(numeric_ord_ore, query_numeric_ord_ore)ParametersReturnslt(query_real_ord, real_ord)ParametersReturnslt(real_ord, query_real_ord)ParametersReturnslt(jsonb, text_ord_ore)ParametersReturnslt(text_ord_ore, jsonb)ParametersReturnslt(text_ord_ore, text_ord_ore)ParametersReturnslt(jsonb, bigint_ord)ParametersReturnslt(bigint_ord, jsonb)ParametersReturnslt(bigint_ord, bigint_ord)ParametersReturnslt(query_integer_ord_ore, integer_ord_ore)ParametersReturnslt(integer_ord_ore, query_integer_ord_ore)ParametersReturnslt(jsonb, numeric_ord_ore)ParametersReturnslt(numeric_ord_ore, jsonb)ParametersReturnslt(numeric_ord_ore, numeric_ord_ore)ParametersReturnslt(jsonb, real_ord_ore)ParametersReturnslt(real_ord_ore, jsonb)ParametersReturnslt(real_ord_ore, real_ord_ore)ParametersReturnslt(query_text_ord_ore, text_ord_ore)ParametersReturnslt(text_ord_ore, query_text_ord_ore)ParametersReturnslt(query_smallint_ord_ore, smallint_ord_ore)ParametersReturnslt(smallint_ord_ore, query_smallint_ord_ore)ParametersReturnslt(jsonb, double_ord)ParametersReturnslt(double_ord, jsonb)ParametersReturnslt(double_ord, double_ord)ParametersReturnslt(query_timestamp_ord_ope, timestamp_ord_ope)ParametersReturnslt(timestamp_ord_ope, query_timestamp_ord_ope)ParametersReturnslt(query_integer_ord, integer_ord)ParametersReturnslt(integer_ord, query_integer_ord)ParametersReturnslt(query_integer_ord_ope, integer_ord_ope)ParametersReturnslt(integer_ord_ope, query_integer_ord_ope)ParametersReturnslt(jsonb, bigint_ord_ope)ParametersReturnslt(bigint_ord_ope, jsonb)ParametersReturnslt(bigint_ord_ope, bigint_ord_ope)ParametersReturnslt(query_text_ord_ope, text_ord_ope)ParametersReturnslt(text_ord_ope, query_text_ord_ope)ParametersReturnslt(query_smallint_ord, smallint_ord)ParametersReturnslt(smallint_ord, query_smallint_ord)ParametersReturnslt(query_numeric_ord, numeric_ord)ParametersReturnslt(numeric_ord, query_numeric_ord)ParametersReturnslt(query_timestamp_ord_ore, timestamp_ord_ore)ParametersReturnslt(timestamp_ord_ore, query_timestamp_ord_ore)ParametersReturnslt(jsonb, integer_ord)ParametersReturnslt(integer_ord, jsonb)ParametersReturnslt(integer_ord, integer_ord)ParametersReturnslt(query_timestamp_ord, timestamp_ord)ParametersReturnslt(timestamp_ord, query_timestamp_ord)ParametersReturnslt(jsonb, text_search)ParametersReturnslt(text_search, jsonb)ParametersReturnslt(text_search, text_search)ParametersReturnslt(jsonb, timestamp_ord)ParametersReturnslt(timestamp_ord, jsonb)ParametersReturnslt(timestamp_ord, timestamp_ord)ParametersReturnslt(query_bigint_ord_ope, bigint_ord_ope)ParametersReturnslt(bigint_ord_ope, query_bigint_ord_ope)ParametersReturnslt(query_real_ord_ope, real_ord_ope)ParametersReturnslt(real_ord_ope, query_real_ord_ope)ParametersReturnslt(jsonb, numeric_ord)ParametersReturnslt(numeric_ord, jsonb)ParametersReturnslt(numeric_ord, numeric_ord)ParametersReturnslt(jsonb, date_ord_ope)ParametersReturnslt(date_ord_ope, jsonb)ParametersReturnslt(date_ord_ope, date_ord_ope)ParametersReturnslt(query_double_ord_ore, double_ord_ore)ParametersReturnslt(double_ord_ore, query_double_ord_ore)ParametersReturnslt(jsonb, double_ord_ore)ParametersReturnslt(double_ord_ore, jsonb)ParametersReturnslt(double_ord_ore, double_ord_ore)ParametersReturnslt(query_double_ord, double_ord)ParametersReturnslt(double_ord, query_double_ord)ParametersReturnslt(query_real_ord_ore, real_ord_ore)ParametersReturnslt(real_ord_ore, query_real_ord_ore)ParametersReturnslt(query_date_ord_ope, date_ord_ope)ParametersReturnslt(date_ord_ope, query_date_ord_ope)ParametersReturnslt(jsonb, timestamp_ord_ope)ParametersReturnslt(timestamp_ord_ope, jsonb)ParametersReturnslt(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnslt(jsonb, date_ord_ore)ParametersReturnslt(date_ord_ore, jsonb)ParametersReturnslt(date_ord_ore, date_ord_ore)ParametersReturnslt(query_numeric_ord_ope, numeric_ord_ope)ParametersReturnslt(numeric_ord_ope, query_numeric_ord_ope)ParametersReturnslt(query_bigint_ord, bigint_ord)ParametersReturnslt(bigint_ord, query_bigint_ord)ParametersReturnslte(jsonb, smallint_ord_ore)ParametersReturnslte(smallint_ord_ore, jsonb)ParametersReturnslte(smallint_ord_ore, smallint_ord_ore)ParametersReturnslte(query_bigint_ord_ore, bigint_ord_ore)ParametersReturnslte(bigint_ord_ore, query_bigint_ord_ore)ParametersReturnslte(jsonb, bigint_ord_ore)ParametersReturnslte(bigint_ord_ore, jsonb)ParametersReturnslte(bigint_ord_ore, bigint_ord_ore)ParametersReturnslte(query_date_ord_ore, date_ord_ore)ParametersReturnslte(date_ord_ore, query_date_ord_ore)ParametersReturnslte(jsonb, text_ord)ParametersReturnslte(text_ord, jsonb)ParametersReturnslte(text_ord, text_ord)ParametersReturnslte(jsonb, date_ord)ParametersReturnslte(date_ord, jsonb)ParametersReturnslte(date_ord, date_ord)ParametersReturnslte(jsonb, integer_ord_ore)ParametersReturnslte(integer_ord_ore, jsonb)ParametersReturnslte(integer_ord_ore, integer_ord_ore)ParametersReturnslte(query_text_search, text_search)ParametersReturnslte(text_search, query_text_search)ParametersReturnslte(query_smallint_ord_ope, smallint_ord_ope)ParametersReturnslte(smallint_ord_ope, query_smallint_ord_ope)ParametersReturnslte(jsonb, real_ord)ParametersReturnslte(real_ord, jsonb)ParametersReturnslte(real_ord, real_ord)ParametersReturnslte(jsonb, text_ord_ope)ParametersReturnslte(text_ord_ope, jsonb)ParametersReturnslte(text_ord_ope, text_ord_ope)ParametersReturnslte(jsonb, smallint_ord)ParametersReturnslte(smallint_ord, jsonb)ParametersReturnslte(smallint_ord, smallint_ord)ParametersReturnslte(query_text_ord, text_ord)ParametersReturnslte(text_ord, query_text_ord)ParametersReturnslte(query_double_ord_ope, double_ord_ope)ParametersReturnslte(double_ord_ope, query_double_ord_ope)ParametersReturnslte(jsonb, double_ord_ope)ParametersReturnslte(double_ord_ope, jsonb)ParametersReturnslte(double_ord_ope, double_ord_ope)ParametersReturnslte(jsonb, real_ord_ope)ParametersReturnslte(real_ord_ope, jsonb)ParametersReturnslte(real_ord_ope, real_ord_ope)ParametersReturnslte(jsonb, integer_ord_ope)ParametersReturnslte(integer_ord_ope, jsonb)ParametersReturnslte(integer_ord_ope, integer_ord_ope)ParametersReturnslte(jsonb, smallint_ord_ope)ParametersReturnslte(smallint_ord_ope, jsonb)ParametersReturnslte(smallint_ord_ope, smallint_ord_ope)ParametersReturnslte(jsonb, timestamp_ord_ore)ParametersReturnslte(timestamp_ord_ore, jsonb)ParametersReturnslte(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnslte(jsonb, numeric_ord_ope)ParametersReturnslte(numeric_ord_ope, jsonb)ParametersReturnslte(numeric_ord_ope, numeric_ord_ope)ParametersReturnslte(query_date_ord, date_ord)ParametersReturnslte(date_ord, query_date_ord)ParametersReturnslte(query_numeric_ord_ore, numeric_ord_ore)ParametersReturnslte(numeric_ord_ore, query_numeric_ord_ore)ParametersReturnslte(query_real_ord, real_ord)ParametersReturnslte(real_ord, query_real_ord)ParametersReturnslte(jsonb, text_ord_ore)ParametersReturnslte(text_ord_ore, jsonb)ParametersReturnslte(text_ord_ore, text_ord_ore)ParametersReturnslte(jsonb, bigint_ord)ParametersReturnslte(bigint_ord, jsonb)ParametersReturnslte(bigint_ord, bigint_ord)ParametersReturnslte(query_integer_ord_ore, integer_ord_ore)ParametersReturnslte(integer_ord_ore, query_integer_ord_ore)ParametersReturnslte(jsonb, numeric_ord_ore)ParametersReturnslte(numeric_ord_ore, jsonb)ParametersReturnslte(numeric_ord_ore, numeric_ord_ore)ParametersReturnslte(jsonb, real_ord_ore)ParametersReturnslte(real_ord_ore, jsonb)ParametersReturnslte(real_ord_ore, real_ord_ore)ParametersReturnslte(query_text_ord_ore, text_ord_ore)ParametersReturnslte(text_ord_ore, query_text_ord_ore)ParametersReturnslte(query_smallint_ord_ore, smallint_ord_ore)ParametersReturnslte(smallint_ord_ore, query_smallint_ord_ore)ParametersReturnslte(jsonb, double_ord)ParametersReturnslte(double_ord, jsonb)ParametersReturnslte(double_ord, double_ord)ParametersReturnslte(query_timestamp_ord_ope, timestamp_ord_ope)ParametersReturnslte(timestamp_ord_ope, query_timestamp_ord_ope)ParametersReturnslte(query_integer_ord, integer_ord)ParametersReturnslte(integer_ord, query_integer_ord)ParametersReturnslte(query_integer_ord_ope, integer_ord_ope)ParametersReturnslte(integer_ord_ope, query_integer_ord_ope)ParametersReturnslte(jsonb, bigint_ord_ope)ParametersReturnslte(bigint_ord_ope, jsonb)ParametersReturnslte(bigint_ord_ope, bigint_ord_ope)ParametersReturnslte(query_text_ord_ope, text_ord_ope)ParametersReturnslte(text_ord_ope, query_text_ord_ope)ParametersReturnslte(query_smallint_ord, smallint_ord)ParametersReturnslte(smallint_ord, query_smallint_ord)ParametersReturnslte(query_numeric_ord, numeric_ord)ParametersReturnslte(numeric_ord, query_numeric_ord)ParametersReturnslte(query_timestamp_ord_ore, timestamp_ord_ore)ParametersReturnslte(timestamp_ord_ore, query_timestamp_ord_ore)ParametersReturnslte(jsonb, integer_ord)ParametersReturnslte(integer_ord, jsonb)ParametersReturnslte(integer_ord, integer_ord)ParametersReturnslte(query_timestamp_ord, timestamp_ord)ParametersReturnslte(timestamp_ord, query_timestamp_ord)ParametersReturnslte(jsonb, text_search)ParametersReturnslte(text_search, jsonb)ParametersReturnslte(text_search, text_search)ParametersReturnslte(jsonb, timestamp_ord)ParametersReturnslte(timestamp_ord, jsonb)ParametersReturnslte(timestamp_ord, timestamp_ord)ParametersReturnslte(query_bigint_ord_ope, bigint_ord_ope)ParametersReturnslte(bigint_ord_ope, query_bigint_ord_ope)ParametersReturnslte(query_real_ord_ope, real_ord_ope)ParametersReturnslte(real_ord_ope, query_real_ord_ope)ParametersReturnslte(jsonb, numeric_ord)ParametersReturnslte(numeric_ord, jsonb)ParametersReturnslte(numeric_ord, numeric_ord)ParametersReturnslte(jsonb, date_ord_ope)ParametersReturnslte(date_ord_ope, jsonb)ParametersReturnslte(date_ord_ope, date_ord_ope)ParametersReturnslte(query_double_ord_ore, double_ord_ore)ParametersReturnslte(double_ord_ore, query_double_ord_ore)ParametersReturnslte(jsonb, double_ord_ore)ParametersReturnslte(double_ord_ore, jsonb)ParametersReturnslte(double_ord_ore, double_ord_ore)ParametersReturnslte(query_double_ord, double_ord)ParametersReturnslte(double_ord, query_double_ord)ParametersReturnslte(query_real_ord_ore, real_ord_ore)ParametersReturnslte(real_ord_ore, query_real_ord_ore)ParametersReturnslte(query_date_ord_ope, date_ord_ope)ParametersReturnslte(date_ord_ope, query_date_ord_ope)ParametersReturnslte(jsonb, timestamp_ord_ope)ParametersReturnslte(timestamp_ord_ope, jsonb)ParametersReturnslte(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnslte(jsonb, date_ord_ore)ParametersReturnslte(date_ord_ore, jsonb)ParametersReturnslte(date_ord_ore, date_ord_ore)ParametersReturnslte(query_numeric_ord_ope, numeric_ord_ope)ParametersReturnslte(numeric_ord_ope, query_numeric_ord_ope)ParametersReturnslte(query_bigint_ord, bigint_ord)ParametersReturnslte(bigint_ord, query_bigint_ord)ParametersReturnsmatch_term(query_text_search)ParametersReturnsmatch_term(text_match)ParametersReturnsmatch_term(query_text_match)ParametersReturnsmatch_term(text_search)ParametersReturnsmax(text_ord_ore)ParametersReturnsmax(double_ord_ore)ParametersReturnsmax(timestamp_ord_ope)ParametersReturnsmax(text_ord_ope)ParametersReturnsmax(text_ord)ParametersReturnsmax(real_ord_ope)ParametersReturnsmax(smallint_ord_ore)ParametersReturnsmax(bigint_ord_ore)ParametersReturnsmax(numeric_ord_ore)ParametersReturnsmax(text_search)ParametersReturnsmax(double_ord_ope)ParametersReturnsmax(date_ord_ope)ParametersReturnsmax(timestamp_ord)ParametersReturnsmax(jsonb_entry)ParametersReturnsmax(date_ord_ore)ParametersReturnsmax(real_ord_ore)ParametersReturnsmax(integer_ord)ParametersReturnsmax(smallint_ord_ope)ParametersReturnsmax(timestamp_ord_ore)ParametersReturnsmax(integer_ord_ope)ParametersReturnsmax(integer_ord_ore)ParametersReturnsmax(double_ord)ParametersReturnsmax(date_ord)ParametersReturnsmax(bigint_ord_ope)ParametersReturnsmax(bigint_ord)ParametersReturnsmax(numeric_ord_ope)ParametersReturnsmax(smallint_ord)ParametersReturnsmax(real_ord)ParametersReturnsmax(numeric_ord)ParametersReturnsmeta_data(jsonb)ParametersReturnsmin(text_ord_ore)ParametersReturnsmin(double_ord_ore)ParametersReturnsmin(timestamp_ord_ope)ParametersReturnsmin(text_ord_ope)ParametersReturnsmin(text_ord)ParametersReturnsmin(real_ord_ope)ParametersReturnsmin(smallint_ord_ore)ParametersReturnsmin(bigint_ord_ore)ParametersReturnsmin(numeric_ord_ore)ParametersReturnsmin(text_search)ParametersReturnsmin(double_ord_ope)ParametersReturnsmin(date_ord_ope)ParametersReturnsmin(timestamp_ord)ParametersReturnsmin(jsonb_entry)ParametersReturnsmin(date_ord_ore)ParametersReturnsmin(real_ord_ore)ParametersReturnsmin(integer_ord)ParametersReturnsmin(smallint_ord_ope)ParametersReturnsmin(timestamp_ord_ore)ParametersReturnsmin(integer_ord_ope)ParametersReturnsmin(integer_ord_ore)ParametersReturnsmin(double_ord)ParametersReturnsmin(date_ord)ParametersReturnsmin(bigint_ord_ope)ParametersReturnsmin(bigint_ord)ParametersReturnsmin(numeric_ord_ope)ParametersReturnsmin(smallint_ord)ParametersReturnsmin(real_ord)ParametersReturnsmin(numeric_ord)ParametersReturnsneq(jsonb, smallint_ord_ore)ParametersReturnsneq(smallint_ord_ore, jsonb)ParametersReturnsneq(smallint_ord_ore, smallint_ord_ore)ParametersReturnsneq(query_bigint_ord_ore, bigint_ord_ore)ParametersReturnsneq(bigint_ord_ore, query_bigint_ord_ore)ParametersReturnsneq(jsonb, bigint_ord_ore)ParametersReturnsneq(bigint_ord_ore, jsonb)ParametersReturnsneq(bigint_ord_ore, bigint_ord_ore)ParametersReturnsneq(jsonb, real_eq)ParametersReturnsneq(real_eq, jsonb)ParametersReturnsneq(real_eq, real_eq)ParametersReturnsneq(query_date_ord_ore, date_ord_ore)ParametersReturnsneq(date_ord_ore, query_date_ord_ore)ParametersReturnsneq(jsonb, text_ord)ParametersReturnsneq(text_ord, jsonb)ParametersReturnsneq(text_ord, text_ord)ParametersReturnsneq(jsonb, date_ord)ParametersReturnsneq(date_ord, jsonb)ParametersReturnsneq(date_ord, date_ord)ParametersReturnsneq(jsonb, integer_ord_ore)ParametersReturnsneq(integer_ord_ore, jsonb)ParametersReturnsneq(integer_ord_ore, integer_ord_ore)ParametersReturnsneq(query_text_search, text_search)ParametersReturnsneq(text_search, query_text_search)ParametersReturnsneq(query_smallint_ord_ope, smallint_ord_ope)ParametersReturnsneq(smallint_ord_ope, query_smallint_ord_ope)ParametersReturnsneq(jsonb, numeric_eq)ParametersReturnsneq(numeric_eq, jsonb)ParametersReturnsneq(numeric_eq, numeric_eq)ParametersReturnsneq(jsonb, date_eq)ParametersReturnsneq(date_eq, jsonb)ParametersReturnsneq(date_eq, date_eq)ParametersReturnsneq(jsonb, real_ord)ParametersReturnsneq(real_ord, jsonb)ParametersReturnsneq(real_ord, real_ord)ParametersReturnsneq(jsonb, timestamp_eq)ParametersReturnsneq(timestamp_eq, jsonb)ParametersReturnsneq(timestamp_eq, timestamp_eq)ParametersReturnsneq(query_bigint_eq, bigint_eq)ParametersReturnsneq(bigint_eq, query_bigint_eq)ParametersReturnsneq(query_date_eq, date_eq)ParametersReturnsneq(date_eq, query_date_eq)ParametersReturnsneq(query_timestamp_eq, timestamp_eq)ParametersReturnsneq(timestamp_eq, query_timestamp_eq)ParametersReturnsneq(jsonb, text_ord_ope)ParametersReturnsneq(text_ord_ope, jsonb)ParametersReturnsneq(text_ord_ope, text_ord_ope)ParametersReturnsneq(jsonb, double_eq)ParametersReturnsneq(double_eq, jsonb)ParametersReturnsneq(double_eq, double_eq)ParametersReturnsneq(jsonb, smallint_ord)ParametersReturnsneq(smallint_ord, jsonb)ParametersReturnsneq(smallint_ord, smallint_ord)ParametersReturnsneq(query_text_ord, text_ord)ParametersReturnsneq(text_ord, query_text_ord)ParametersReturnsneq(query_double_ord_ope, double_ord_ope)ParametersReturnsneq(double_ord_ope, query_double_ord_ope)ParametersReturnsneq(query_numeric_eq, numeric_eq)ParametersReturnsneq(numeric_eq, query_numeric_eq)ParametersReturnsneq(jsonb, double_ord_ope)ParametersReturnsneq(double_ord_ope, jsonb)ParametersReturnsneq(double_ord_ope, double_ord_ope)ParametersReturnsneq(jsonb, real_ord_ope)ParametersReturnsneq(real_ord_ope, jsonb)ParametersReturnsneq(real_ord_ope, real_ord_ope)ParametersReturnsneq(jsonb, integer_ord_ope)ParametersReturnsneq(integer_ord_ope, jsonb)ParametersReturnsneq(integer_ord_ope, integer_ord_ope)ParametersReturnsneq(jsonb, smallint_ord_ope)ParametersReturnsneq(smallint_ord_ope, jsonb)ParametersReturnsneq(smallint_ord_ope, smallint_ord_ope)ParametersReturnsneq(query_text_eq, text_eq)ParametersReturnsneq(text_eq, query_text_eq)ParametersReturnsneq(jsonb, timestamp_ord_ore)ParametersReturnsneq(timestamp_ord_ore, jsonb)ParametersReturnsneq(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnsneq(jsonb, numeric_ord_ope)ParametersReturnsneq(numeric_ord_ope, jsonb)ParametersReturnsneq(numeric_ord_ope, numeric_ord_ope)ParametersReturnsneq(jsonb, text_eq)ParametersReturnsneq(text_eq, jsonb)ParametersReturnsneq(text_eq, text_eq)ParametersReturnsneq(query_integer_eq, integer_eq)ParametersReturnsneq(integer_eq, query_integer_eq)ParametersReturnsneq(query_date_ord, date_ord)ParametersReturnsneq(date_ord, query_date_ord)ParametersReturnsneq(query_numeric_ord_ore, numeric_ord_ore)ParametersReturnsneq(numeric_ord_ore, query_numeric_ord_ore)ParametersReturnsneq(query_real_ord, real_ord)ParametersReturnsneq(real_ord, query_real_ord)ParametersReturnsneq(jsonb, text_ord_ore)ParametersReturnsneq(text_ord_ore, jsonb)ParametersReturnsneq(text_ord_ore, text_ord_ore)ParametersReturnsneq(query_double_eq, double_eq)ParametersReturnsneq(double_eq, query_double_eq)ParametersReturnsneq(jsonb, bigint_ord)ParametersReturnsneq(bigint_ord, jsonb)ParametersReturnsneq(bigint_ord, bigint_ord)ParametersReturnsneq(query_integer_ord_ore, integer_ord_ore)ParametersReturnsneq(integer_ord_ore, query_integer_ord_ore)ParametersReturnsneq(jsonb, numeric_ord_ore)ParametersReturnsneq(numeric_ord_ore, jsonb)ParametersReturnsneq(numeric_ord_ore, numeric_ord_ore)ParametersReturnsneq(jsonb, bigint_eq)ParametersReturnsneq(bigint_eq, jsonb)ParametersReturnsneq(bigint_eq, bigint_eq)ParametersReturnsneq(jsonb, real_ord_ore)ParametersReturnsneq(real_ord_ore, jsonb)ParametersReturnsneq(real_ord_ore, real_ord_ore)ParametersReturnsneq(query_text_ord_ore, text_ord_ore)ParametersReturnsneq(text_ord_ore, query_text_ord_ore)ParametersReturnsneq(query_smallint_ord_ore, smallint_ord_ore)ParametersReturnsneq(smallint_ord_ore, query_smallint_ord_ore)ParametersReturnsneq(jsonb, double_ord)ParametersReturnsneq(double_ord, jsonb)ParametersReturnsneq(double_ord, double_ord)ParametersReturnsneq(query_timestamp_ord_ope, timestamp_ord_ope)ParametersReturnsneq(timestamp_ord_ope, query_timestamp_ord_ope)ParametersReturnsneq(query_integer_ord, integer_ord)ParametersReturnsneq(integer_ord, query_integer_ord)ParametersReturnsneq(query_integer_ord_ope, integer_ord_ope)ParametersReturnsneq(integer_ord_ope, query_integer_ord_ope)ParametersReturnsneq(jsonb, bigint_ord_ope)ParametersReturnsneq(bigint_ord_ope, jsonb)ParametersReturnsneq(bigint_ord_ope, bigint_ord_ope)ParametersReturnsneq(query_text_ord_ope, text_ord_ope)ParametersReturnsneq(text_ord_ope, query_text_ord_ope)ParametersReturnsneq(query_smallint_ord, smallint_ord)ParametersReturnsneq(smallint_ord, query_smallint_ord)ParametersReturnsneq(query_numeric_ord, numeric_ord)ParametersReturnsneq(numeric_ord, query_numeric_ord)ParametersReturnsneq(query_timestamp_ord_ore, timestamp_ord_ore)ParametersReturnsneq(timestamp_ord_ore, query_timestamp_ord_ore)ParametersReturnsneq(jsonb, integer_eq)ParametersReturnsneq(integer_eq, jsonb)ParametersReturnsneq(integer_eq, integer_eq)ParametersReturnsneq(jsonb, integer_ord)ParametersReturnsneq(integer_ord, jsonb)ParametersReturnsneq(integer_ord, integer_ord)ParametersReturnsneq(query_timestamp_ord, timestamp_ord)ParametersReturnsneq(timestamp_ord, query_timestamp_ord)ParametersReturnsneq(jsonb, text_search)ParametersReturnsneq(text_search, jsonb)ParametersReturnsneq(text_search, text_search)ParametersReturnsneq(query_smallint_eq, smallint_eq)ParametersReturnsneq(smallint_eq, query_smallint_eq)ParametersReturnsneq(jsonb, timestamp_ord)ParametersReturnsneq(timestamp_ord, jsonb)ParametersReturnsneq(timestamp_ord, timestamp_ord)ParametersReturnsneq(query_bigint_ord_ope, bigint_ord_ope)ParametersReturnsneq(bigint_ord_ope, query_bigint_ord_ope)ParametersReturnsneq(jsonb, smallint_eq)ParametersReturnsneq(smallint_eq, jsonb)ParametersReturnsneq(smallint_eq, smallint_eq)ParametersReturnsneq(query_real_ord_ope, real_ord_ope)ParametersReturnsneq(real_ord_ope, query_real_ord_ope)ParametersReturnsneq(jsonb, numeric_ord)ParametersReturnsneq(numeric_ord, jsonb)ParametersReturnsneq(numeric_ord, numeric_ord)ParametersReturnsneq(jsonb, date_ord_ope)ParametersReturnsneq(date_ord_ope, jsonb)ParametersReturnsneq(date_ord_ope, date_ord_ope)ParametersReturnsneq(query_double_ord_ore, double_ord_ore)ParametersReturnsneq(double_ord_ore, query_double_ord_ore)ParametersReturnsneq(jsonb, double_ord_ore)ParametersReturnsneq(double_ord_ore, jsonb)ParametersReturnsneq(double_ord_ore, double_ord_ore)ParametersReturnsneq(query_double_ord, double_ord)ParametersReturnsneq(double_ord, query_double_ord)ParametersReturnsneq(query_real_ord_ore, real_ord_ore)ParametersReturnsneq(real_ord_ore, query_real_ord_ore)ParametersReturnsneq(query_date_ord_ope, date_ord_ope)ParametersReturnsneq(date_ord_ope, query_date_ord_ope)ParametersReturnsneq(jsonb, timestamp_ord_ope)ParametersReturnsneq(timestamp_ord_ope, jsonb)ParametersReturnsneq(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnsneq(query_real_eq, real_eq)ParametersReturnsneq(real_eq, query_real_eq)ParametersReturnsneq(jsonb, date_ord_ore)ParametersReturnsneq(date_ord_ore, jsonb)ParametersReturnsneq(date_ord_ore, date_ord_ore)ParametersReturnsneq(query_numeric_ord_ope, numeric_ord_ope)ParametersReturnsneq(numeric_ord_ope, query_numeric_ord_ope)ParametersReturnsneq(query_bigint_ord, bigint_ord)ParametersReturnsneq(bigint_ord, query_bigint_ord)ParametersReturnsord_ope_term(query_smallint_ord_ope)ParametersReturnsord_ope_term(text_ord_ope)ParametersReturnsord_ope_term(query_double_ord_ope)ParametersReturnsord_ope_term(double_ord_ope)ParametersReturnsord_ope_term(real_ord_ope)ParametersReturnsord_ope_term(integer_ord_ope)ParametersReturnsord_ope_term(smallint_ord_ope)ParametersReturnsord_ope_term(numeric_ord_ope)ParametersReturnsord_ope_term(query_timestamp_ord_ope)ParametersReturnsord_ope_term(query_integer_ord_ope)ParametersReturnsord_ope_term(bigint_ord_ope)ParametersReturnsord_ope_term(query_text_ord_ope)ParametersReturnsord_ope_term(query_bigint_ord_ope)ParametersReturnsord_ope_term(query_real_ord_ope)ParametersReturnsord_ope_term(date_ord_ope)ParametersReturnsord_ope_term(query_date_ord_ope)ParametersReturnsord_ope_term(timestamp_ord_ope)ParametersReturnsord_ope_term(query_numeric_ord_ope)ParametersReturnsord_term(smallint_ord_ore)ParametersReturnsord_term(query_bigint_ord_ore)ParametersReturnsord_term(bigint_ord_ore)ParametersReturnsord_term(query_date_ord_ore)ParametersReturnsord_term(text_ord)ParametersReturnsord_term(date_ord)ParametersReturnsord_term(integer_ord_ore)ParametersReturnsord_term(query_text_search)ParametersReturnsord_term(real_ord)ParametersReturnsord_term(smallint_ord)ParametersReturnsord_term(query_text_ord)ParametersReturnsord_term(timestamp_ord_ore)ParametersReturnsord_term(query_date_ord)ParametersReturnsord_term(query_numeric_ord_ore)ParametersReturnsord_term(query_real_ord)ParametersReturnsord_term(text_ord_ore)ParametersReturnsord_term(bigint_ord)ParametersReturnsord_term(query_integer_ord_ore)ParametersReturnsord_term(numeric_ord_ore)ParametersReturnsord_term(real_ord_ore)ParametersReturnsord_term(query_text_ord_ore)ParametersReturnsord_term(query_smallint_ord_ore)ParametersReturnsord_term(double_ord)ParametersReturnsord_term(query_integer_ord)ParametersReturnsord_term(query_smallint_ord)ParametersReturnsord_term(query_numeric_ord)ParametersReturnsord_term(query_timestamp_ord_ore)ParametersReturnsord_term(integer_ord)ParametersReturnsord_term(query_timestamp_ord)ParametersReturnsord_term(text_search)ParametersReturnsord_term(timestamp_ord)ParametersReturnsord_term(numeric_ord)ParametersReturnsord_term(query_double_ord_ore)ParametersReturnsord_term(double_ord_ore)ParametersReturnsord_term(query_double_ord)ParametersReturnsord_term(query_real_ord_ore)ParametersReturnsord_term(date_ord_ore)ParametersReturnsord_term(query_bigint_ord)ParametersReturnsore_cllw(jsonb_entry)ParametersReturnsVariantsselector(jsonb_entry)ParametersReturnsselector(jsonb)ParametersReturnsExceptionsste_vec(jsonb)ParametersReturnsste_vec_contains(jsonb, jsonb)ParametersReturnsste_vec_contains(json, json)ParametersReturnsVariantsto_ste_vec_query(json)ParametersReturnsVariantsversion()ReturnsNotePrivate Functionsbloom_filter(jsonb)ParametersReturnscompare_ore_block_256_term(ore_block_256_term, ore_block_256_term)Parameterscompare_ore_block_256_terms(ore_block_256, ore_block_256)Parameterscompare_ore_block_256_terms(ore_block_256_term, ore_block_256_term)Parameterscompare_ore_block_256_terms(ore_block_256, ore_block_256)Parameterscompare_ore_cllw_term(ore_cllw, ore_cllw)Parameterscompare_ore_cllw_term_bytes(bytea, bytea)Parameterscontained_by(jsonb, smallint_ord_ore)ParametersReturnscontained_by(smallint_ord_ore, jsonb)ParametersReturnscontained_by(smallint_ord_ore, smallint_ord_ore)ParametersReturnscontained_by(jsonb, bigint_ord_ore)ParametersReturnscontained_by(bigint_ord_ore, jsonb)ParametersReturnscontained_by(bigint_ord_ore, bigint_ord_ore)ParametersReturnscontained_by(jsonb, real_eq)ParametersReturnscontained_by(real_eq, jsonb)ParametersReturnscontained_by(real_eq, real_eq)ParametersReturnscontained_by(jsonb, text_ord)ParametersReturnscontained_by(text_ord, jsonb)ParametersReturnscontained_by(text_ord, text_ord)ParametersReturnscontained_by(jsonb, date_ord)ParametersReturnscontained_by(date_ord, jsonb)ParametersReturnscontained_by(date_ord, date_ord)ParametersReturnscontained_by(jsonb)ParametersReturnscontained_by(jsonb)ParametersReturnscontained_by()ParametersReturnscontained_by(jsonb, date)ParametersReturnscontained_by(date, jsonb)ParametersReturnscontained_by(date, date)ParametersReturnscontained_by(jsonb, integer_ord_ore)ParametersReturnscontained_by(integer_ord_ore, jsonb)ParametersReturnscontained_by(integer_ord_ore, integer_ord_ore)ParametersReturnscontained_by(jsonb, numeric_eq)ParametersReturnscontained_by(numeric_eq, jsonb)ParametersReturnscontained_by(numeric_eq, numeric_eq)ParametersReturnscontained_by(jsonb, date_eq)ParametersReturnscontained_by(date_eq, jsonb)ParametersReturnscontained_by(date_eq, date_eq)ParametersReturnscontained_by(jsonb, boolean)ParametersReturnscontained_by(boolean, jsonb)ParametersReturnscontained_by(boolean, boolean)ParametersReturnscontained_by(jsonb, numeric)ParametersReturnscontained_by(numeric, jsonb)ParametersReturnscontained_by(numeric, numeric)ParametersReturnscontained_by(jsonb, real_ord)ParametersReturnscontained_by(real_ord, jsonb)ParametersReturnscontained_by(real_ord, real_ord)ParametersReturnscontained_by(jsonb, timestamp_eq)ParametersReturnscontained_by(timestamp_eq, jsonb)ParametersReturnscontained_by(timestamp_eq, timestamp_eq)ParametersReturnscontained_by(jsonb, text_ord_ope)ParametersReturnscontained_by(text_ord_ope, jsonb)ParametersReturnscontained_by(text_ord_ope, text_ord_ope)ParametersReturnscontained_by(jsonb, double_eq)ParametersReturnscontained_by(double_eq, jsonb)ParametersReturnscontained_by(double_eq, double_eq)ParametersReturnscontained_by(jsonb, smallint_ord)ParametersReturnscontained_by(smallint_ord, jsonb)ParametersReturnscontained_by(smallint_ord, smallint_ord)ParametersReturnscontained_by(jsonb, timestamp)ParametersReturnscontained_by(timestamp, jsonb)ParametersReturnscontained_by(timestamp, timestamp)ParametersReturnscontained_by(jsonb, double_ord_ope)ParametersReturnscontained_by(double_ord_ope, jsonb)ParametersReturnscontained_by(double_ord_ope, double_ord_ope)ParametersReturnscontained_by(jsonb, real_ord_ope)ParametersReturnscontained_by(real_ord_ope, jsonb)ParametersReturnscontained_by(real_ord_ope, real_ord_ope)ParametersReturnscontained_by(jsonb, integer_ord_ope)ParametersReturnscontained_by(integer_ord_ope, jsonb)ParametersReturnscontained_by(integer_ord_ope, integer_ord_ope)ParametersReturnscontained_by(jsonb, smallint_ord_ope)ParametersReturnscontained_by(smallint_ord_ope, jsonb)ParametersReturnscontained_by(smallint_ord_ope, smallint_ord_ope)ParametersReturnscontained_by(jsonb, timestamp_ord_ore)ParametersReturnscontained_by(timestamp_ord_ore, jsonb)ParametersReturnscontained_by(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnscontained_by(jsonb, numeric_ord_ope)ParametersReturnscontained_by(numeric_ord_ope, jsonb)ParametersReturnscontained_by(numeric_ord_ope, numeric_ord_ope)ParametersReturnscontained_by(jsonb, text_eq)ParametersReturnscontained_by(text_eq, jsonb)ParametersReturnscontained_by(text_eq, text_eq)ParametersReturnscontained_by(jsonb, text_ord_ore)ParametersReturnscontained_by(text_ord_ore, jsonb)ParametersReturnscontained_by(text_ord_ore, text_ord_ore)ParametersReturnscontained_by(jsonb, bigint_ord)ParametersReturnscontained_by(bigint_ord, jsonb)ParametersReturnscontained_by(bigint_ord, bigint_ord)ParametersReturnscontained_by(jsonb, numeric_ord_ore)ParametersReturnscontained_by(numeric_ord_ore, jsonb)ParametersReturnscontained_by(numeric_ord_ore, numeric_ord_ore)ParametersReturnscontained_by(jsonb, bigint_eq)ParametersReturnscontained_by(bigint_eq, jsonb)ParametersReturnscontained_by(bigint_eq, bigint_eq)ParametersReturnscontained_by(jsonb, real_ord_ore)ParametersReturnscontained_by(real_ord_ore, jsonb)ParametersReturnscontained_by(real_ord_ore, real_ord_ore)ParametersReturnscontained_by(jsonb, double_ord)ParametersReturnscontained_by(double_ord, jsonb)ParametersReturnscontained_by(double_ord, double_ord)ParametersReturnscontained_by(jsonb, bigint)ParametersReturnscontained_by(bigint, jsonb)ParametersReturnscontained_by(bigint, bigint)ParametersReturnscontained_by(jsonb, bigint_ord_ope)ParametersReturnscontained_by(bigint_ord_ope, jsonb)ParametersReturnscontained_by(bigint_ord_ope, bigint_ord_ope)ParametersReturnscontained_by(jsonb, smallint)ParametersReturnscontained_by(smallint, jsonb)ParametersReturnscontained_by(smallint, smallint)ParametersReturnscontained_by(jsonb, text)ParametersReturnscontained_by(text, jsonb)ParametersReturnscontained_by(text, text)ParametersReturnscontained_by(jsonb, integer_eq)ParametersReturnscontained_by(integer_eq, jsonb)ParametersReturnscontained_by(integer_eq, integer_eq)ParametersReturnscontained_by(jsonb, integer_ord)ParametersReturnscontained_by(integer_ord, jsonb)ParametersReturnscontained_by(integer_ord, integer_ord)ParametersReturnscontained_by(jsonb, timestamp_ord)ParametersReturnscontained_by(timestamp_ord, jsonb)ParametersReturnscontained_by(timestamp_ord, timestamp_ord)ParametersReturnscontained_by(jsonb, smallint_eq)ParametersReturnscontained_by(smallint_eq, jsonb)ParametersReturnscontained_by(smallint_eq, smallint_eq)ParametersReturnscontained_by(jsonb, numeric_ord)ParametersReturnscontained_by(numeric_ord, jsonb)ParametersReturnscontained_by(numeric_ord, numeric_ord)ParametersReturnscontained_by(jsonb, date_ord_ope)ParametersReturnscontained_by(date_ord_ope, jsonb)ParametersReturnscontained_by(date_ord_ope, date_ord_ope)ParametersReturnscontained_by(jsonb, double_ord_ore)ParametersReturnscontained_by(double_ord_ore, jsonb)ParametersReturnscontained_by(double_ord_ore, double_ord_ore)ParametersReturnscontained_by(jsonb, timestamp_ord_ope)ParametersReturnscontained_by(timestamp_ord_ope, jsonb)ParametersReturnscontained_by(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnscontained_by(jsonb, integer)ParametersReturnscontained_by(integer, jsonb)ParametersReturnscontained_by(integer, integer)ParametersReturnscontained_by(jsonb, date_ord_ore)ParametersReturnscontained_by(date_ord_ore, jsonb)ParametersReturnscontained_by(date_ord_ore, date_ord_ore)ParametersReturnscontained_by(jsonb, real)ParametersReturnscontained_by(real, jsonb)ParametersReturnscontained_by(real, real)ParametersReturnscontains(jsonb, smallint_ord_ore)ParametersReturnscontains(smallint_ord_ore, jsonb)ParametersReturnscontains(smallint_ord_ore, smallint_ord_ore)ParametersReturnscontains(jsonb, bigint_ord_ore)ParametersReturnscontains(bigint_ord_ore, jsonb)ParametersReturnscontains(bigint_ord_ore, bigint_ord_ore)ParametersReturnscontains(jsonb, real_eq)ParametersReturnscontains(real_eq, jsonb)ParametersReturnscontains(real_eq, real_eq)ParametersReturnscontains(jsonb, text_ord)ParametersReturnscontains(text_ord, jsonb)ParametersReturnscontains(text_ord, text_ord)ParametersReturnscontains(jsonb, date_ord)ParametersReturnscontains(date_ord, jsonb)ParametersReturnscontains(date_ord, date_ord)ParametersReturnscontains(jsonb)ParametersReturnscontains(jsonb)ParametersReturnscontains()ParametersReturnscontains(jsonb, date)ParametersReturnscontains(date, jsonb)ParametersReturnscontains(date, date)ParametersReturnscontains(jsonb, integer_ord_ore)ParametersReturnscontains(integer_ord_ore, jsonb)ParametersReturnscontains(integer_ord_ore, integer_ord_ore)ParametersReturnscontains(jsonb, numeric_eq)ParametersReturnscontains(numeric_eq, jsonb)ParametersReturnscontains(numeric_eq, numeric_eq)ParametersReturnscontains(jsonb, date_eq)ParametersReturnscontains(date_eq, jsonb)ParametersReturnscontains(date_eq, date_eq)ParametersReturnscontains(jsonb, boolean)ParametersReturnscontains(boolean, jsonb)ParametersReturnscontains(boolean, boolean)ParametersReturnscontains(jsonb, numeric)ParametersReturnscontains(numeric, jsonb)ParametersReturnscontains(numeric, numeric)ParametersReturnscontains(jsonb, real_ord)ParametersReturnscontains(real_ord, jsonb)ParametersReturnscontains(real_ord, real_ord)ParametersReturnscontains(jsonb, timestamp_eq)ParametersReturnscontains(timestamp_eq, jsonb)ParametersReturnscontains(timestamp_eq, timestamp_eq)ParametersReturnscontains(jsonb, text_ord_ope)ParametersReturnscontains(text_ord_ope, jsonb)ParametersReturnscontains(text_ord_ope, text_ord_ope)ParametersReturnscontains(jsonb, double_eq)ParametersReturnscontains(double_eq, jsonb)ParametersReturnscontains(double_eq, double_eq)ParametersReturnscontains(jsonb, smallint_ord)ParametersReturnscontains(smallint_ord, jsonb)ParametersReturnscontains(smallint_ord, smallint_ord)ParametersReturnscontains(jsonb, timestamp)ParametersReturnscontains(timestamp, jsonb)ParametersReturnscontains(timestamp, timestamp)ParametersReturnscontains(jsonb, double_ord_ope)ParametersReturnscontains(double_ord_ope, jsonb)ParametersReturnscontains(double_ord_ope, double_ord_ope)ParametersReturnscontains(jsonb, real_ord_ope)ParametersReturnscontains(real_ord_ope, jsonb)ParametersReturnscontains(real_ord_ope, real_ord_ope)ParametersReturnscontains(jsonb, integer_ord_ope)ParametersReturnscontains(integer_ord_ope, jsonb)ParametersReturnscontains(integer_ord_ope, integer_ord_ope)ParametersReturnscontains(jsonb, smallint_ord_ope)ParametersReturnscontains(smallint_ord_ope, jsonb)ParametersReturnscontains(smallint_ord_ope, smallint_ord_ope)ParametersReturnscontains(jsonb, timestamp_ord_ore)ParametersReturnscontains(timestamp_ord_ore, jsonb)ParametersReturnscontains(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnscontains(jsonb, numeric_ord_ope)ParametersReturnscontains(numeric_ord_ope, jsonb)ParametersReturnscontains(numeric_ord_ope, numeric_ord_ope)ParametersReturnscontains(jsonb, text_eq)ParametersReturnscontains(text_eq, jsonb)ParametersReturnscontains(text_eq, text_eq)ParametersReturnscontains(jsonb, text_ord_ore)ParametersReturnscontains(text_ord_ore, jsonb)ParametersReturnscontains(text_ord_ore, text_ord_ore)ParametersReturnscontains(jsonb, bigint_ord)ParametersReturnscontains(bigint_ord, jsonb)ParametersReturnscontains(bigint_ord, bigint_ord)ParametersReturnscontains(jsonb, numeric_ord_ore)ParametersReturnscontains(numeric_ord_ore, jsonb)ParametersReturnscontains(numeric_ord_ore, numeric_ord_ore)ParametersReturnscontains(jsonb, bigint_eq)ParametersReturnscontains(bigint_eq, jsonb)ParametersReturnscontains(bigint_eq, bigint_eq)ParametersReturnscontains(jsonb, real_ord_ore)ParametersReturnscontains(real_ord_ore, jsonb)ParametersReturnscontains(real_ord_ore, real_ord_ore)ParametersReturnscontains(jsonb, double_ord)ParametersReturnscontains(double_ord, jsonb)ParametersReturnscontains(double_ord, double_ord)ParametersReturnscontains(jsonb, bigint)ParametersReturnscontains(bigint, jsonb)ParametersReturnscontains(bigint, bigint)ParametersReturnscontains(jsonb, bigint_ord_ope)ParametersReturnscontains(bigint_ord_ope, jsonb)ParametersReturnscontains(bigint_ord_ope, bigint_ord_ope)ParametersReturnscontains(jsonb, smallint)ParametersReturnscontains(smallint, jsonb)ParametersReturnscontains(smallint, smallint)ParametersReturnscontains(jsonb, text)ParametersReturnscontains(text, jsonb)ParametersReturnscontains(text, text)ParametersReturnscontains(jsonb, integer_eq)ParametersReturnscontains(integer_eq, jsonb)ParametersReturnscontains(integer_eq, integer_eq)ParametersReturnscontains(jsonb, integer_ord)ParametersReturnscontains(integer_ord, jsonb)ParametersReturnscontains(integer_ord, integer_ord)ParametersReturnscontains(jsonb, timestamp_ord)ParametersReturnscontains(timestamp_ord, jsonb)ParametersReturnscontains(timestamp_ord, timestamp_ord)ParametersReturnscontains(jsonb, smallint_eq)ParametersReturnscontains(smallint_eq, jsonb)ParametersReturnscontains(smallint_eq, smallint_eq)ParametersReturnscontains(jsonb, numeric_ord)ParametersReturnscontains(numeric_ord, jsonb)ParametersReturnscontains(numeric_ord, numeric_ord)ParametersReturnscontains(jsonb, date_ord_ope)ParametersReturnscontains(date_ord_ope, jsonb)ParametersReturnscontains(date_ord_ope, date_ord_ope)ParametersReturnscontains(jsonb, double_ord_ore)ParametersReturnscontains(double_ord_ore, jsonb)ParametersReturnscontains(double_ord_ore, double_ord_ore)ParametersReturnscontains(jsonb, timestamp_ord_ope)ParametersReturnscontains(timestamp_ord_ope, jsonb)ParametersReturnscontains(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnscontains(jsonb, integer)ParametersReturnscontains(integer, jsonb)ParametersReturnscontains(integer, integer)ParametersReturnscontains(jsonb, date_ord_ore)ParametersReturnscontains(date_ord_ore, jsonb)ParametersReturnscontains(date_ord_ore, date_ord_ore)ParametersReturnscontains(jsonb, real)ParametersReturnscontains(real, jsonb)ParametersReturnscontains(real, real)ParametersReturnsencrypted_domain_unsupported_bool(text, text)ParametersReturnsencrypted_domain_unsupported_jsonb(text, text)ParametersReturnsencrypted_domain_unsupported_text(text, text)ParametersReturnseq(jsonb)ParametersReturnseq(jsonb)ParametersReturnseq()ParametersReturnseq(jsonb, date)ParametersReturnseq(date, jsonb)ParametersReturnseq(date, date)ParametersReturnseq(jsonb, boolean)ParametersReturnseq(boolean, jsonb)ParametersReturnseq(boolean, boolean)ParametersReturnseq(jsonb, numeric)ParametersReturnseq(numeric, jsonb)ParametersReturnseq(numeric, numeric)ParametersReturnseq(jsonb, timestamp)ParametersReturnseq(timestamp, jsonb)ParametersReturnseq(timestamp, timestamp)ParametersReturnseq(jsonb, text_match)ParametersReturnseq(text_match, jsonb)ParametersReturnseq(text_match, text_match)ParametersReturnseq(jsonb, bigint)ParametersReturnseq(bigint, jsonb)ParametersReturnseq(bigint, bigint)ParametersReturnseq(jsonb, smallint)ParametersReturnseq(smallint, jsonb)ParametersReturnseq(smallint, smallint)ParametersReturnseq(jsonb, text)ParametersReturnseq(text, jsonb)ParametersReturnseq(text, text)ParametersReturnseq(jsonb, integer)ParametersReturnseq(integer, jsonb)ParametersReturnseq(integer, integer)ParametersReturnseq(jsonb, real)ParametersReturnseq(real, jsonb)ParametersReturnseq(real, real)ParametersReturnsgt(jsonb, real_eq)ParametersReturnsgt(real_eq, jsonb)ParametersReturnsgt(real_eq, real_eq)ParametersReturnsgt(jsonb)ParametersReturnsgt(jsonb)ParametersReturnsgt()ParametersReturnsgt(jsonb, date)ParametersReturnsgt(date, jsonb)ParametersReturnsgt(date, date)ParametersReturnsgt(jsonb, numeric_eq)ParametersReturnsgt(numeric_eq, jsonb)ParametersReturnsgt(numeric_eq, numeric_eq)ParametersReturnsgt(jsonb, date_eq)ParametersReturnsgt(date_eq, jsonb)ParametersReturnsgt(date_eq, date_eq)ParametersReturnsgt(jsonb, boolean)ParametersReturnsgt(boolean, jsonb)ParametersReturnsgt(boolean, boolean)ParametersReturnsgt(jsonb, numeric)ParametersReturnsgt(numeric, jsonb)ParametersReturnsgt(numeric, numeric)ParametersReturnsgt(jsonb, timestamp_eq)ParametersReturnsgt(timestamp_eq, jsonb)ParametersReturnsgt(timestamp_eq, timestamp_eq)ParametersReturnsgt(jsonb, double_eq)ParametersReturnsgt(double_eq, jsonb)ParametersReturnsgt(double_eq, double_eq)ParametersReturnsgt(jsonb, timestamp)ParametersReturnsgt(timestamp, jsonb)ParametersReturnsgt(timestamp, timestamp)ParametersReturnsgt(jsonb, text_match)ParametersReturnsgt(text_match, jsonb)ParametersReturnsgt(text_match, text_match)ParametersReturnsgt(jsonb, text_eq)ParametersReturnsgt(text_eq, jsonb)ParametersReturnsgt(text_eq, text_eq)ParametersReturnsgt(jsonb, bigint_eq)ParametersReturnsgt(bigint_eq, jsonb)ParametersReturnsgt(bigint_eq, bigint_eq)ParametersReturnsgt(jsonb, bigint)ParametersReturnsgt(bigint, jsonb)ParametersReturnsgt(bigint, bigint)ParametersReturnsgt(jsonb, smallint)ParametersReturnsgt(smallint, jsonb)ParametersReturnsgt(smallint, smallint)ParametersReturnsgt(jsonb, text)ParametersReturnsgt(text, jsonb)ParametersReturnsgt(text, text)ParametersReturnsgt(jsonb, integer_eq)ParametersReturnsgt(integer_eq, jsonb)ParametersReturnsgt(integer_eq, integer_eq)ParametersReturnsgt(jsonb, smallint_eq)ParametersReturnsgt(smallint_eq, jsonb)ParametersReturnsgt(smallint_eq, smallint_eq)ParametersReturnsgt(jsonb, integer)ParametersReturnsgt(integer, jsonb)ParametersReturnsgt(integer, integer)ParametersReturnsgt(jsonb, real)ParametersReturnsgt(real, jsonb)ParametersReturnsgt(real, real)ParametersReturnsgte(jsonb, real_eq)ParametersReturnsgte(real_eq, jsonb)ParametersReturnsgte(real_eq, real_eq)ParametersReturnsgte(jsonb)ParametersReturnsgte(jsonb)ParametersReturnsgte()ParametersReturnsgte(jsonb, date)ParametersReturnsgte(date, jsonb)ParametersReturnsgte(date, date)ParametersReturnsgte(jsonb, numeric_eq)ParametersReturnsgte(numeric_eq, jsonb)ParametersReturnsgte(numeric_eq, numeric_eq)ParametersReturnsgte(jsonb, date_eq)ParametersReturnsgte(date_eq, jsonb)ParametersReturnsgte(date_eq, date_eq)ParametersReturnsgte(jsonb, boolean)ParametersReturnsgte(boolean, jsonb)ParametersReturnsgte(boolean, boolean)ParametersReturnsgte(jsonb, numeric)ParametersReturnsgte(numeric, jsonb)ParametersReturnsgte(numeric, numeric)ParametersReturnsgte(jsonb, timestamp_eq)ParametersReturnsgte(timestamp_eq, jsonb)ParametersReturnsgte(timestamp_eq, timestamp_eq)ParametersReturnsgte(jsonb, double_eq)ParametersReturnsgte(double_eq, jsonb)ParametersReturnsgte(double_eq, double_eq)ParametersReturnsgte(jsonb, timestamp)ParametersReturnsgte(timestamp, jsonb)ParametersReturnsgte(timestamp, timestamp)ParametersReturnsgte(jsonb, text_match)ParametersReturnsgte(text_match, jsonb)ParametersReturnsgte(text_match, text_match)ParametersReturnsgte(jsonb, text_eq)ParametersReturnsgte(text_eq, jsonb)ParametersReturnsgte(text_eq, text_eq)ParametersReturnsgte(jsonb, bigint_eq)ParametersReturnsgte(bigint_eq, jsonb)ParametersReturnsgte(bigint_eq, bigint_eq)ParametersReturnsgte(jsonb, bigint)ParametersReturnsgte(bigint, jsonb)ParametersReturnsgte(bigint, bigint)ParametersReturnsgte(jsonb, smallint)ParametersReturnsgte(smallint, jsonb)ParametersReturnsgte(smallint, smallint)ParametersReturnsgte(jsonb, text)ParametersReturnsgte(text, jsonb)ParametersReturnsgte(text, text)ParametersReturnsgte(jsonb, integer_eq)ParametersReturnsgte(integer_eq, jsonb)ParametersReturnsgte(integer_eq, integer_eq)ParametersReturnsgte(jsonb, smallint_eq)ParametersReturnsgte(smallint_eq, jsonb)ParametersReturnsgte(smallint_eq, smallint_eq)ParametersReturnsgte(jsonb, integer)ParametersReturnsgte(integer, jsonb)ParametersReturnsgte(integer, integer)ParametersReturnsgte(jsonb, real)ParametersReturnsgte(real, jsonb)ParametersReturnsgte(real, real)ParametersReturnshas_bloom_filter(jsonb)ParametersReturnshas_hmac_256(jsonb)ParametersReturnshas_ore_block_256(jsonb)ParametersReturnsNotehas_ore_cllw(jsonb)ParametersReturnshmac_256(jsonb)ParametersReturnsis_ste_vec_array(jsonb)ParametersReturnsjsonb_array_to_bytea_array(jsonb)Parametersjsonb_array_to_ore_block_256(jsonb)Parametersjsonb_blocked_compare_json_json(json, json)ParametersReturnsjsonb_blocked_compare_json_jsonb(json, jsonb)ParametersReturnsjsonb_blocked_compare_jsonb_json(jsonb, json)ParametersReturnsjsonb_blocked_concat(json, jsonb)ParametersReturnsjsonb_blocked_concat_rhs(jsonb, json)ParametersReturnsjsonb_blocked_contained_json_jsonb(json, jsonb)ParametersReturnsjsonb_blocked_contained_jsonb_json(jsonb, json)ParametersReturnsjsonb_blocked_contains_json_jsonb(json, jsonb)ParametersReturnsjsonb_blocked_contains_jsonb_json(jsonb, json)ParametersReturnsjsonb_blocked_delete_array(json, text)ParametersReturnsjsonb_blocked_delete_int(json, integer)ParametersReturnsjsonb_blocked_delete_path(json, text)ParametersReturnsjsonb_blocked_delete_text(json, text)ParametersReturnsjsonb_blocked_exists(json, text)ParametersReturnsjsonb_blocked_exists_all(json, text)ParametersReturnsjsonb_blocked_exists_any(json, text)ParametersReturnsjsonb_blocked_jsonpath_exists(json, jsonpath)ParametersReturnsjsonb_blocked_jsonpath_match(json, jsonpath)ParametersReturnsjsonb_blocked_path_extract(json, text)ParametersReturnsjsonb_blocked_path_extract_text(json, text)ParametersReturnsjsonb_entry_max_sfunc(jsonb_entry, jsonb_entry)ParametersReturnsNotejsonb_entry_min_sfunc(jsonb_entry, jsonb_entry)ParametersReturnsNotelt(jsonb, real_eq)ParametersReturnslt(real_eq, jsonb)ParametersReturnslt(real_eq, real_eq)ParametersReturnslt(jsonb)ParametersReturnslt(jsonb)ParametersReturnslt()ParametersReturnslt(jsonb, date)ParametersReturnslt(date, jsonb)ParametersReturnslt(date, date)ParametersReturnslt(jsonb, numeric_eq)ParametersReturnslt(numeric_eq, jsonb)ParametersReturnslt(numeric_eq, numeric_eq)ParametersReturnslt(jsonb, date_eq)ParametersReturnslt(date_eq, jsonb)ParametersReturnslt(date_eq, date_eq)ParametersReturnslt(jsonb, boolean)ParametersReturnslt(boolean, jsonb)ParametersReturnslt(boolean, boolean)ParametersReturnslt(jsonb, numeric)ParametersReturnslt(numeric, jsonb)ParametersReturnslt(numeric, numeric)ParametersReturnslt(jsonb, timestamp_eq)ParametersReturnslt(timestamp_eq, jsonb)ParametersReturnslt(timestamp_eq, timestamp_eq)ParametersReturnslt(jsonb, double_eq)ParametersReturnslt(double_eq, jsonb)ParametersReturnslt(double_eq, double_eq)ParametersReturnslt(jsonb, timestamp)ParametersReturnslt(timestamp, jsonb)ParametersReturnslt(timestamp, timestamp)ParametersReturnslt(jsonb, text_match)ParametersReturnslt(text_match, jsonb)ParametersReturnslt(text_match, text_match)ParametersReturnslt(jsonb, text_eq)ParametersReturnslt(text_eq, jsonb)ParametersReturnslt(text_eq, text_eq)ParametersReturnslt(jsonb, bigint_eq)ParametersReturnslt(bigint_eq, jsonb)ParametersReturnslt(bigint_eq, bigint_eq)ParametersReturnslt(jsonb, bigint)ParametersReturnslt(bigint, jsonb)ParametersReturnslt(bigint, bigint)ParametersReturnslt(jsonb, smallint)ParametersReturnslt(smallint, jsonb)ParametersReturnslt(smallint, smallint)ParametersReturnslt(jsonb, text)ParametersReturnslt(text, jsonb)ParametersReturnslt(text, text)ParametersReturnslt(jsonb, integer_eq)ParametersReturnslt(integer_eq, jsonb)ParametersReturnslt(integer_eq, integer_eq)ParametersReturnslt(jsonb, smallint_eq)ParametersReturnslt(smallint_eq, jsonb)ParametersReturnslt(smallint_eq, smallint_eq)ParametersReturnslt(jsonb, integer)ParametersReturnslt(integer, jsonb)ParametersReturnslt(integer, integer)ParametersReturnslt(jsonb, real)ParametersReturnslt(real, jsonb)ParametersReturnslt(real, real)ParametersReturnslte(jsonb, real_eq)ParametersReturnslte(real_eq, jsonb)ParametersReturnslte(real_eq, real_eq)ParametersReturnslte(jsonb)ParametersReturnslte(jsonb)ParametersReturnslte()ParametersReturnslte(jsonb, date)ParametersReturnslte(date, jsonb)ParametersReturnslte(date, date)ParametersReturnslte(jsonb, numeric_eq)ParametersReturnslte(numeric_eq, jsonb)ParametersReturnslte(numeric_eq, numeric_eq)ParametersReturnslte(jsonb, date_eq)ParametersReturnslte(date_eq, jsonb)ParametersReturnslte(date_eq, date_eq)ParametersReturnslte(jsonb, boolean)ParametersReturnslte(boolean, jsonb)ParametersReturnslte(boolean, boolean)ParametersReturnslte(jsonb, numeric)ParametersReturnslte(numeric, jsonb)ParametersReturnslte(numeric, numeric)ParametersReturnslte(jsonb, timestamp_eq)ParametersReturnslte(timestamp_eq, jsonb)ParametersReturnslte(timestamp_eq, timestamp_eq)ParametersReturnslte(jsonb, double_eq)ParametersReturnslte(double_eq, jsonb)ParametersReturnslte(double_eq, double_eq)ParametersReturnslte(jsonb, timestamp)ParametersReturnslte(timestamp, jsonb)ParametersReturnslte(timestamp, timestamp)ParametersReturnslte(jsonb, text_match)ParametersReturnslte(text_match, jsonb)ParametersReturnslte(text_match, text_match)ParametersReturnslte(jsonb, text_eq)ParametersReturnslte(text_eq, jsonb)ParametersReturnslte(text_eq, text_eq)ParametersReturnslte(jsonb, bigint_eq)ParametersReturnslte(bigint_eq, jsonb)ParametersReturnslte(bigint_eq, bigint_eq)ParametersReturnslte(jsonb, bigint)ParametersReturnslte(bigint, jsonb)ParametersReturnslte(bigint, bigint)ParametersReturnslte(jsonb, smallint)ParametersReturnslte(smallint, jsonb)ParametersReturnslte(smallint, smallint)ParametersReturnslte(jsonb, text)ParametersReturnslte(text, jsonb)ParametersReturnslte(text, text)ParametersReturnslte(jsonb, integer_eq)ParametersReturnslte(integer_eq, jsonb)ParametersReturnslte(integer_eq, integer_eq)ParametersReturnslte(jsonb, smallint_eq)ParametersReturnslte(smallint_eq, jsonb)ParametersReturnslte(smallint_eq, smallint_eq)ParametersReturnslte(jsonb, integer)ParametersReturnslte(integer, jsonb)ParametersReturnslte(integer, integer)ParametersReturnslte(jsonb, real)ParametersReturnslte(real, jsonb)ParametersReturnslte(real, real)ParametersReturnsmax_sfunc(text_ord_ore, text_ord_ore)ParametersReturnsmax_sfunc(double_ord_ore, double_ord_ore)ParametersReturnsmax_sfunc(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnsmax_sfunc(text_ord_ope, text_ord_ope)ParametersReturnsmax_sfunc(text_ord, text_ord)ParametersReturnsmax_sfunc(real_ord_ope, real_ord_ope)ParametersReturnsmax_sfunc(smallint_ord_ore, smallint_ord_ore)ParametersReturnsmax_sfunc(bigint_ord_ore, bigint_ord_ore)ParametersReturnsmax_sfunc(numeric_ord_ore, numeric_ord_ore)ParametersReturnsmax_sfunc(text_search, text_search)ParametersReturnsmax_sfunc(double_ord_ope, double_ord_ope)ParametersReturnsmax_sfunc(date_ord_ope, date_ord_ope)ParametersReturnsmax_sfunc(timestamp_ord, timestamp_ord)ParametersReturnsmax_sfunc(date_ord_ore, date_ord_ore)ParametersReturnsmax_sfunc(real_ord_ore, real_ord_ore)ParametersReturnsmax_sfunc(integer_ord, integer_ord)ParametersReturnsmax_sfunc(smallint_ord_ope, smallint_ord_ope)ParametersReturnsmax_sfunc(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnsmax_sfunc(integer_ord_ope, integer_ord_ope)ParametersReturnsmax_sfunc(integer_ord_ore, integer_ord_ore)ParametersReturnsmax_sfunc(double_ord, double_ord)ParametersReturnsmax_sfunc(date_ord, date_ord)ParametersReturnsmax_sfunc(bigint_ord_ope, bigint_ord_ope)ParametersReturnsmax_sfunc(bigint_ord, bigint_ord)ParametersReturnsmax_sfunc(numeric_ord_ope, numeric_ord_ope)ParametersReturnsmax_sfunc(smallint_ord, smallint_ord)ParametersReturnsmax_sfunc(real_ord, real_ord)ParametersReturnsmax_sfunc(numeric_ord, numeric_ord)ParametersReturnsmin_sfunc(text_ord_ore, text_ord_ore)ParametersReturnsmin_sfunc(double_ord_ore, double_ord_ore)ParametersReturnsmin_sfunc(timestamp_ord_ope, timestamp_ord_ope)ParametersReturnsmin_sfunc(text_ord_ope, text_ord_ope)ParametersReturnsmin_sfunc(text_ord, text_ord)ParametersReturnsmin_sfunc(real_ord_ope, real_ord_ope)ParametersReturnsmin_sfunc(smallint_ord_ore, smallint_ord_ore)ParametersReturnsmin_sfunc(bigint_ord_ore, bigint_ord_ore)ParametersReturnsmin_sfunc(numeric_ord_ore, numeric_ord_ore)ParametersReturnsmin_sfunc(text_search, text_search)ParametersReturnsmin_sfunc(double_ord_ope, double_ord_ope)ParametersReturnsmin_sfunc(date_ord_ope, date_ord_ope)ParametersReturnsmin_sfunc(timestamp_ord, timestamp_ord)ParametersReturnsmin_sfunc(date_ord_ore, date_ord_ore)ParametersReturnsmin_sfunc(real_ord_ore, real_ord_ore)ParametersReturnsmin_sfunc(integer_ord, integer_ord)ParametersReturnsmin_sfunc(smallint_ord_ope, smallint_ord_ope)ParametersReturnsmin_sfunc(timestamp_ord_ore, timestamp_ord_ore)ParametersReturnsmin_sfunc(integer_ord_ope, integer_ord_ope)ParametersReturnsmin_sfunc(integer_ord_ore, integer_ord_ore)ParametersReturnsmin_sfunc(double_ord, double_ord)ParametersReturnsmin_sfunc(date_ord, date_ord)ParametersReturnsmin_sfunc(bigint_ord_ope, bigint_ord_ope)ParametersReturnsmin_sfunc(bigint_ord, bigint_ord)ParametersReturnsmin_sfunc(numeric_ord_ope, numeric_ord_ope)ParametersReturnsmin_sfunc(smallint_ord, smallint_ord)ParametersReturnsmin_sfunc(real_ord, real_ord)ParametersReturnsmin_sfunc(numeric_ord, numeric_ord)ParametersReturnsneq(jsonb)ParametersReturnsneq(jsonb)ParametersReturnsneq()ParametersReturnsneq(jsonb, date)ParametersReturnsneq(date, jsonb)ParametersReturnsneq(date, date)ParametersReturnsneq(jsonb, boolean)ParametersReturnsneq(boolean, jsonb)ParametersReturnsneq(boolean, boolean)ParametersReturnsneq(jsonb, numeric)ParametersReturnsneq(numeric, jsonb)ParametersReturnsneq(numeric, numeric)ParametersReturnsneq(jsonb, timestamp)ParametersReturnsneq(timestamp, jsonb)ParametersReturnsneq(timestamp, timestamp)ParametersReturnsneq(jsonb, text_match)ParametersReturnsneq(text_match, jsonb)ParametersReturnsneq(text_match, text_match)ParametersReturnsneq(jsonb, bigint)ParametersReturnsneq(bigint, jsonb)ParametersReturnsneq(bigint, bigint)ParametersReturnsneq(jsonb, smallint)ParametersReturnsneq(smallint, jsonb)ParametersReturnsneq(smallint, smallint)ParametersReturnsneq(jsonb, text)ParametersReturnsneq(text, jsonb)ParametersReturnsneq(text, text)ParametersReturnsneq(jsonb, integer)ParametersReturnsneq(integer, jsonb)ParametersReturnsneq(integer, integer)ParametersReturnsneq(jsonb, real)ParametersReturnsneq(real, jsonb)ParametersReturnsneq(real, real)ParametersReturnsope_cllw(jsonb)ParametersReturnsore_block_256(jsonb)ParametersReturnsExceptionsore_block_256_eq(ore_block_256, ore_block_256)Parametersore_block_256_gt(ore_block_256, ore_block_256)Parametersore_block_256_gte(ore_block_256, ore_block_256)Parametersore_block_256_lt(ore_block_256, ore_block_256)Parametersore_block_256_lte(ore_block_256, ore_block_256)Parametersore_block_256_neq(ore_block_256, ore_block_256)Parametersore_cllw(jsonb)ParametersReturnsVariantsore_cllw_eq(ore_cllw, ore_cllw)Parametersore_cllw_gt(ore_cllw, ore_cllw)Parametersore_cllw_gte(ore_cllw, ore_cllw)Parametersore_cllw_lt(ore_cllw, ore_cllw)Parametersore_cllw_lte(ore_cllw, ore_cllw)Parametersore_cllw_neq(ore_cllw, ore_cllw)Parametersowned_schemas()Returns