在 PostgresSQL 9.2 上发布以下内容:
CREATE TABLE test (j JSON, ja JSON[]);
INSERT INTO test (j) VALUES('{"name":"Alex", "age":20}' ); -- Works FINE
INSERT INTO test (ja) VALUES( ARRAY['{"name":"Alex", "age":20}', '{"name":"Peter", "age":24}'] ); -- Returns ERROR
第一个插入工作正常。第二个插入返回错误:列“ja”是 json[] 类型,但表达式是 text[] 类型
我可以强制转换类型以防止错误:
INSERT INTO test(ja) VALUES( CAST (ARRAY['{"name":"Alex", "age":20}', '{"name":"Peter", "age":24}'] as JSON[]) ); -- Works FINE
我的问题是是否有办法避免铸造?