1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-04-25 07:18:46 +02:00

fix(PostgreSQL): unable to export as sql inserts

This commit is contained in:
Fabio Di Stasio 2023-06-14 09:38:54 +02:00
parent 89815bf5e7
commit e07e7b736e

View File

@ -42,7 +42,7 @@ export const exportRows = (args: {
client: client:
args.client, args.client,
fields: args.fields, fields: args.fields,
table: args.sqlOptions.targetTable || args.table, table: args.sqlOptions?.targetTable || args.table,
options: args.sqlOptions options: args.sqlOptions
}); });