diff --git a/docs/generated/sql/functions.md b/docs/generated/sql/functions.md index 9f5ae3f12ecb..ff45341ad764 100644 --- a/docs/generated/sql/functions.md +++ b/docs/generated/sql/functions.md @@ -1133,9 +1133,9 @@ the locality flag on node startup. Returns an error if no region is set.
json_object_keys(input: jsonb) → string
Returns sorted set of keys in the outermost JSON object.
json_populate_record(base: anyelement, from_json: jsonb) → anyelement
Expands the object in from_json to a row whose columns match the record type defined by base.
+json_populate_record(base: tuple, from_json: jsonb) → tuple
Expands the object in from_json to a row whose columns match the record type defined by base.
json_populate_recordset(base: anyelement, from_json: jsonb) → anyelement
Expands the outermost array of objects in from_json to a set of rows whose columns match the record type defined by base
+json_populate_recordset(base: tuple, from_json: jsonb) → tuple
Expands the outermost array of objects in from_json to a set of rows whose columns match the record type defined by base
jsonb_array_elements(input: jsonb) → jsonb
Expands a JSON array to a set of JSON values.
jsonb_object_keys(input: jsonb) → string
Returns sorted set of keys in the outermost JSON object.
jsonb_populate_record(base: anyelement, from_json: jsonb) → anyelement
Expands the object in from_json to a row whose columns match the record type defined by base.
+jsonb_populate_record(base: tuple, from_json: jsonb) → tuple
Expands the object in from_json to a row whose columns match the record type defined by base.
jsonb_populate_recordset(base: anyelement, from_json: jsonb) → anyelement
Expands the outermost array of objects in from_json to a set of rows whose columns match the record type defined by base
+jsonb_populate_recordset(base: tuple, from_json: jsonb) → tuple
Expands the outermost array of objects in from_json to a set of rows whose columns match the record type defined by base
pg_get_keywords() → tuple{string AS word, string AS catcode, string AS catdesc}
Produces a virtual table containing the keywords known to the SQL parser.