fix: 修复 duckdb 方言配置

Signed-off-by: young <18860957075@163.com>
This commit is contained in:
young 2025-01-08 07:54:00 +00:00 committed by Gitee
parent 02d6ac50d7
commit 58dd7e8904
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -153,7 +153,7 @@ public class DialectFactory {
case TRINO:
return new CommonsDialectImpl(KeywordWrap.NONE, LimitOffsetProcessor.SQLSERVER);
case DUCKDB:
return new CommonsDialectImpl(KeywordWrap.DOUBLE_QUOTATION, LimitOffsetProcessor.MYSQL);
return new CommonsDialectImpl(KeywordWrap.DOUBLE_QUOTATION, LimitOffsetProcessor.POSTGRESQL);
default:
return new CommonsDialectImpl();
}