Skip to content

Commit 986c87e

Browse files
committed
readme updated
1 parent 7ff12fb commit 986c87e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,17 @@ The generated hierarchy can be navigated using the Visitor Pattern.
3030

3131
## Extensions Version 0.9
3232

33+
* included a huge amount of oracle test sqls. There is much room for improvement supporting all oracle syntax specials.
34+
* pivot support for subqueries implemented
35+
36+
```sql
37+
SELECT * FROM (SELECT times_purchased, state_code FROM customers t) PIVOT (count(state_code) FOR state_code IN ('NY', 'CT')) ORDER BY times_purchased
38+
```
39+
40+
* "!=" support corrected to not give "<>" while deparsing
41+
* Improved **COUNT(ALL expr)** support
42+
* lax test utils implemented
43+
* toString() for window elements corrected
3344
* Character Set support included.
3445

3546
```sql

0 commit comments

Comments
 (0)