We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ff12fb commit 986c87eCopy full SHA for 986c87e
README.md
@@ -30,6 +30,17 @@ The generated hierarchy can be navigated using the Visitor Pattern.
30
31
## Extensions Version 0.9
32
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
44
* Character Set support included.
45
46
```sql
0 commit comments