Bu sorunu güzel bir şekilde göstermektedir:
B sütunu bir dizi değil, metin türündeyse aşağıdakiler çalışır:
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
Sütunu bir dizi olarak tanımlarsam, bu hatayı alıyorum:
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.
Bir JSON dizisini hedef sütun türünün Postgres dizisine dönüştürmeye nasıl ikna edebilir / zorlayabilirim json_to_record
(veya json_populate_record
)?