2 Commits

Author SHA1 Message Date
jerryjzhang
20cd98332c Merge branch 'master' of https://github.com/tencentmusic/supersonic
Some checks failed
supersonic CentOS CI / build (21) (push) Has been cancelled
supersonic mac CI / build (21) (push) Has been cancelled
supersonic ubuntu CI / build (21) (push) Has been cancelled
supersonic windows CI / build (21) (push) Has been cancelled
2026-04-28 20:56:50 +08:00
jerryjzhang
a4253784be refactor(common): 移除 Presto 上下文中的标识符引用字符串配置
- 移除了 .withIdentifierQuoteString("\"") 配置项
- 保持了字面量引号和转义引号字符串配置
- 维持了大小写敏感性和未引用名称的大小写不变设置
2026-04-28 20:55:40 +08:00

View File

@@ -28,8 +28,9 @@ public class SqlDialectFactory {
.withQuotedCasing(Casing.UNCHANGED).withCaseSensitive(true);
public static final Context PRESTO_CONTEXT =
SqlDialect.EMPTY_CONTEXT.withDatabaseProduct(DatabaseProduct.PRESTO)
.withLiteralQuoteString("'").withIdentifierQuoteString("\"")
.withLiteralEscapedQuoteString("''").withUnquotedCasing(Casing.UNCHANGED)
.withLiteralQuoteString("'")
.withLiteralEscapedQuoteString("''")
.withUnquotedCasing(Casing.UNCHANGED)
.withQuotedCasing(Casing.UNCHANGED).withCaseSensitive(true);
public static final Context KYUUBI_CONTEXT =
SqlDialect.EMPTY_CONTEXT.withDatabaseProduct(DatabaseProduct.BIG_QUERY)