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
1 changed files with 1 additions and 1 deletions

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
});