Skip to content

Commit

Permalink
fixed postSQL and preSQL expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
sumeetdas-dlpx committed Oct 23, 2024
1 parent 8179bda commit 6272164
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1203,12 +1203,12 @@
" store: 'sqlserver',",
" schemaName: ($DF_SINK_SCHEMA),",
" tableName: ($DF_SINK_TABLE),",
" preSQLs:['concat(\\'SET IDENTITY_INSERT\\', \\' \\', $DF_SINK_SCHEMA, \\'.\\', $DF_SINK_TABLE, \\' \\', \\'OFF\\')'],",
" preSQLs:[(concat(\\'SET IDENTITY_INSERT\\', \\' \\', $DF_SINK_SCHEMA, \\'.\\', $DF_SINK_TABLE, \\' \\', \\'OFF\\'))],",
" insertable: true,",
" updateable: false,",
" deletable: false,",
" upsertable: false,",
" postSQLs:['concat(\\'SET IDENTITY_INSERT\\', \\' \\', $DF_SINK_SCHEMA, \\'.\\', $DF_SINK_TABLE, \\' \\', \\'ON\\')'],",
" postSQLs:[(concat(\\'SET IDENTITY_INSERT\\', \\' \\', $DF_SINK_SCHEMA, \\'.\\', $DF_SINK_TABLE, \\' \\', \\'ON\\'))],",
" skipDuplicateMapInputs: true,",
" skipDuplicateMapOutputs: true,",
" errorHandlingOption: 'stopOnFirstError',",
Expand Down Expand Up @@ -1760,12 +1760,12 @@
" store: 'sqlserver',",
" schemaName: ($DF_SINK_SCHEMA),",
" tableName: ($DF_SINK_TABLE),",
" preSQLs:['concat(\\'SET IDENTITY_INSERT\\', \\' \\', $DF_SINK_SCHEMA, \\'.\\', $DF_SINK_TABLE, \\' \\', \\'OFF\\')'],",
" preSQLs:[(concat(\\'SET IDENTITY_INSERT\\', \\' \\', $DF_SINK_SCHEMA, \\'.\\', $DF_SINK_TABLE, \\' \\', \\'OFF\\'))],",
" insertable: true,",
" updateable: false,",
" deletable: false,",
" upsertable: false,",
" postSQLs:['concat(\\'SET IDENTITY_INSERT\\', \\' \\', $DF_SINK_SCHEMA, \\'.\\', $DF_SINK_TABLE, \\' \\', \\'ON\\')'],",
" postSQLs:[(concat(\\'SET IDENTITY_INSERT\\', \\' \\', $DF_SINK_SCHEMA, \\'.\\', $DF_SINK_TABLE, \\' \\', \\'ON\\'))],",
" skipDuplicateMapInputs: true,",
" skipDuplicateMapOutputs: true,",
" errorHandlingOption: 'stopOnFirstError',",
Expand Down

0 comments on commit 6272164

Please sign in to comment.