Commit 4391c6c3 authored by haocao's avatar haocao
Browse files

Merge remote-tracking branch 'origin/1.5.0.M2' into 1.5.0.M2

parents 17141df3 283e7906
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ next = "/00-overview/contribution/"

## 1.5.0.M2

1. 简单子查询支持
1. 非功能型子查询支持
1. Oracle与SQLServer分页支持

### 缺陷修正
+1 −0
Original line number Diff line number Diff line
@@ -82,6 +82,7 @@ SELECT * FROM t_order o ORDER BY id OFFSET ? ROW FETCH NEXT ? ROWS ONLY
```

目前不支持使用WITH xxx AS (SELECT ...)的方式进行分页。由于Hibernate自动生成的SQLServer分页语句使用了WITH语句,因此目前并不支持基于Hibernate的SQLServer分页。
目前也不支持使用两个TOP + 子查询的方式实现分页。

## MySQL, PostgreSQL