Module jsonb

Module jsonb 

Source
Expand description

JSONB support

Modules§

array_elements
expand array into value rows
array_length
array length
cast
type conversions
each
expand object into key-value rows
format_json
jsonb->json
get
get by name
keys
extract object keys
parse
jsonb_parse
path_query
JSONPath query

Structs§

JsonbArrayLength
A scalar UDF that returns the number of elements in a JSONB array.
JsonbAsF64
A scalar UDF that casts a JSONB value to a f64.
JsonbAsI64
A scalar UDF that casts a JSONB value to an i64.
JsonbAsString
A scalar UDF that casts a JSONB value to a string.
JsonbFormatJson
A scalar UDF that formats JSONB binary data as a JSON string.
JsonbGet
A scalar UDF that retrieves a value from a JSONB object by name.
JsonbObjectKeys
A scalar UDF that extracts the keys from a JSONB object.
JsonbParse
A scalar UDF that parses a JSON string into a JSONB value.
JsonbPathQuery
A scalar UDF that returns all matches of a JSONPath expression on a JSONB value as a JSONB array.
JsonbPathQueryFirst
A scalar UDF that returns the first match of a JSONPath expression on a JSONB value.