Merge pull request #74 from wujlinlin/main

add sinodb支持
This commit is contained in:
Michael Yang 2023-07-19 10:39:02 +08:00 committed by GitHub
commit 655c11a5c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -166,7 +166,7 @@ public enum DbType {
/**
* sinodb
*/
SINODB("sinodb", "星瑞格数据库"),
SINODB("sinodb", "SinoDB 数据库"),
/**
* uxdb
*/

View File

@ -161,8 +161,9 @@ public interface LimitOffsetProcessor {
/**
*
* SINODB 的处理器
* 适合 {@link DbType#INFORMIX}
* 适合 {@link DbType#SINODB}
*/
LimitOffsetProcessor SINODB = (dialect, sql, queryWrapper, limitRows, limitOffset) -> {
if (limitRows != null && limitOffset != null) {