You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically I would like to let SeaQuery build a Postgres bulk insert query in the following format:
insert into table(a, b)
values(1, unnest(array[1, 2, 3]))
Benefits:
Avoids parameter count limitation as the the inserted values are an array
In general a smaller query before replacing placeholders
When working with batch data the current limitation leads to performance bottlenecks as one has to split huge batch inserts into smaller chunks to avoid running in the parameter count limit so this is really not just cosmetic
The text was updated successfully, but these errors were encountered:
Sorry for the delay. Yes, we have some time now as 1.0 is concluding. I have some plan regarding OLAP, including bulk data inserts and some extensions to TimescaleDB
Relates to:
Basically I would like to let SeaQuery build a Postgres bulk insert query in the following format:
Benefits:
The text was updated successfully, but these errors were encountered: