Це добре ілюструє проблему:
Коли стовпець b є текстовим типом, а не масивом, працює наступне:
select *
from json_to_record('{"a":1,"b":["hello", "There"],"c":"bar"}')
as x(a int, b text, d text);
a | b | d
---+--------------------+---
1 | ["hello", "There"] |
Але якщо я визначаю b
стовпець як масив, я отримую цю помилку:
select *
from json_to_record('{"a":1,"b":["hello", "There"],"c":"bar"}')
as x(a int, b text[], d text)
ERROR: malformed array literal: "["hello", "There"]"
DETAIL: "[" must introduce explicitly-specified array dimensions.
Як я можу переконати / примусити json_to_record
(чи json_populate_record
) перетворити масив JSON у масив Postgres цільового типу стовпця?