psql批量插入不同长度的数组列

psql bluk insert array column with different length

unnest 在没有数组数据的情况下工作正常。 我想插入一个数组列。我的输入是这样的:[[1, 2], [1]]

create table test_array
(
    arr int[],
    info text[]
);

CREATE OR REPLACE FUNCTION unnest_2d_1d(anyarray)
RETURNS SETOF anyarray AS
$func$
SELECT array_agg([d1][d2])
FROM   generate_subscripts(,1) d1
    ,  generate_subscripts(,2) d2
GROUP  BY d1
ORDER  BY d1
$func$  LANGUAGE sql IMMUTABLE;

insert into test_array(
arr)
values (
unnest_2d_1d(array[[1,2], [3,4]]::int[]));  -- work fine


insert into test_array(
arr)
values (
unnest_2d_1d(array[[1,2], [3]]::int[]));   -- will failed

失败的错误是:

 ERROR: multidimensional arrays must have array expressions with matching dimensions

unnest_2d_1d来自Unnest array by one level 虽然所有这些函数都不能支持不同长度的数组。

array_dims 发生了另一个相同的错误:

postgres=# SELECT array_dims(ARRAY[[1,2,3], [4,5,6], [7,8]])
postgres-# ;
ERROR:  multidimensional arrays must have array expressions with matching dimensions

我需要unnest_2d_1d做什么才能使失败的成功?

为什么我必须使用 unnest。因为 asyncpg execute_many 丢弃返回值。所以我需要使用一个 sql 来插入数据。但是数组列就像一个长度不同的暗淡

---- 添加一些python和asyncpg

我发现了一个与此问题相关的 github 问题,https://github.com/brianc/node-postgres/issues/1644 尝试使用 python

何时尝试:

async def h():
    async with misc.pg_pool.acquire() as connection:
        stmt = await connection.prepare(f"""
            insert into test_array(info)  select (info::text[]) from  unnest(::text[])
            AS t(info)
        """)
        await stmt.fetch([["sd", "dg"]])

明白了

InvalidTextRepresentationError: malformed array literal: "sd"
DETAIL:  Array value must start with "{" or dimension information.

的.

这会起作用:

insert into test_array(info) 
        select (info::text[]) from  unnest(array['{"sd", "dg"}', '{"g"}']::text[]) as t(info)

这将用于:

insert into test_array(info) 
        select info from jsonb_to_recordset('[{"info":["ttt"]}, {"info":["tt","t"]}]'::jsonb) as t(info text[])