PostgreSQL-9.5 array_to_json

时间:2016-07-26 13:07:26

标签: postgresql-9.2 postgresql-9.5

我在T使用array_to_json时得到PostgreSQL-9.5,而其工作正常9.2,是否有任何配置更改,我可以使其工作为9.2而不更改函数的语法

9.2:

select array_to_json(array_agg(T)) from (select now()abc)t;
               array_to_json
-------------------------------------------
[{"abc":"2016-07-26 13:05:30.894412+00"}]
(1 row)

9.5:

select array_to_json(array_agg(T)) from (select now()abc)t;
                array_to_json
----------------------------------------------
[{"abc":"2016-07-26T13:04:52.352157+00:00"}]
(1 row)

注意:如果我们在文本

中转换时间戳,它就有效

0 个答案:

没有答案