Skip to content

Commit

Permalink
Fix session property description for NON_TRANSACTIONAL_MERGE
Browse files Browse the repository at this point in the history
Also change the description of `NON_TRANSACTIONAL_INSERT`
to the "Enables support for non-transactional INSERT"
  • Loading branch information
chenjian2664 authored and hashhar committed Dec 10, 2024
1 parent 90db2f5 commit e970acc
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",
"Enables support for non-transactional INSERT",
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 e970acc

Please sign in to comment.