Expand description
JSONB binary format types for JSON UDF evaluation JSONB type system for JSON UDF evaluation.
Minimal JSONB binary access types used by the JSON scalar UDFs.
These mirror laminar-connectors JSONB tags but live in
laminar-sql to keep the SQL layer self-contained.
Modules§
- tags
- JSONB binary format type tags.
Functions§
- encode_
jsonb - Encode a
serde_json::Valueinto JSONB binary format. - encode_
jsonb_ into - Encode a JSON value into the given buffer.
- jsonb_
array_ get - Get a JSONB array element by index.
- jsonb_
contains - Check whether JSONB
leftcontainsright(PostgreSQL@>semantics). - jsonb_
get_ field - Access a field by name in a JSONB object.
- jsonb_
has_ key - Check if a JSONB object contains a given key.
- jsonb_
to_ text - Convert a JSONB value slice to its text representation.
- jsonb_
to_ value - Convert a JSONB binary value to a
serde_json::Value. - jsonb_
type_ name - Returns the PostgreSQL-compatible type name for the outermost JSONB value.