Skip to content

Commit 9b557a5

Browse files
author
Zhang Xian
committed
增加的postgresql对应的dialect类
1 parent c6af28f commit 9b557a5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package datart.data.provider.calcite.dialect;
2+
3+
import org.apache.calcite.sql.dialect.PostgresqlSqlDialect;
4+
5+
public class PostgresqlSqlDialectSupport extends PostgresqlSqlDialect implements FetchAndOffsetSupport{
6+
7+
public PostgresqlSqlDialectSupport() {
8+
this(DEFAULT_CONTEXT);
9+
}
10+
private PostgresqlSqlDialectSupport(Context context) { super(context); }
11+
12+
}

0 commit comments

Comments
 (0)