1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-02-17 04:00:48 +01: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:
args.client,
fields: args.fields,
table: args.sqlOptions.targetTable || args.table,
table: args.sqlOptions?.targetTable || args.table,
options: args.sqlOptions
});