Skip to content

Commit

Permalink
Fix session property description for NON_TRANSACTIONAL_MERGE
Browse files Browse the repository at this point in the history
Revert the description for the NON_TRANSACTIONAL_INSERT
  • Loading branch information
chenjian2664 committed Dec 10, 2024
1 parent f100c35 commit 4acfd0e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ public JdbcWriteSessionProperties(JdbcWriteConfig writeConfig)
false))
.add(booleanProperty(
NON_TRANSACTIONAL_INSERT,
"Enables support for non-transactional MERGE",
"Do not use temporary table on insert to table",
writeConfig.isNonTransactionalInsert(),
false))
.add(booleanProperty(
NON_TRANSACTIONAL_MERGE,
"Do not use temporary table on merge",
"Enables support for non-transactional MERGE",
writeConfig.isNonTransactionalMerge(),
false))
.add(integerProperty(
Expand Down

0 comments on commit 4acfd0e

Please sign in to comment.