Skip to content

Commit

Permalink
[bugfix][hana]fix hana special char error (#1390)
Browse files Browse the repository at this point in the history
  • Loading branch information
fangxy-7010 authored Nov 11, 2022
1 parent 9fcfde3 commit 964388b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public Optional<String> getUpsertStatement(

@Override
public String quoteIdentifier(String identifier) {
return identifier;
return "\"" + identifier + "\"";
}

@Override
Expand Down

0 comments on commit 964388b

Please sign in to comment.