Merge branch '6.1.x'

This commit is contained in:
Stéphane Nicoll
2024-04-23 15:34:49 +02:00
7 changed files with 29 additions and 29 deletions

View File

@@ -432,12 +432,12 @@ public class TableMetaDataContext {
private final boolean quoting;
public QuoteHandler(@Nullable String identifierQuoteString) {
QuoteHandler(@Nullable String identifierQuoteString) {
this.identifierQuoteString = identifierQuoteString;
this.quoting = StringUtils.hasText(identifierQuoteString);
}
public void appendTo(StringBuilder stringBuilder, @Nullable String item) {
void appendTo(StringBuilder stringBuilder, @Nullable String item) {
if (this.quoting) {
stringBuilder.append(this.identifierQuoteString)
.append(item).append(this.identifierQuoteString);