!549 fix(DialectFactory): 高斯数据库调整为无反义处理,避免严格大小写处理

Merge pull request !549 from all-around-badass/main
This commit is contained in:
Michael Yang 2025-07-13 01:22:24 +00:00 committed by Gitee
commit b6d35c8513
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -119,7 +119,7 @@ public class DialectFactory {
case ORACLE:
return new OracleDialect();
case GAUSS:
return new CommonsDialectImpl(KeywordWrap.DOUBLE_QUOTATION, LimitOffsetProcessor.ORACLE);
return new CommonsDialectImpl(KeywordWrap.NONE, LimitOffsetProcessor.ORACLE);
case POSTGRE_SQL:
case SQLITE:
case HSQL: