File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,24 @@ Original project websites:
1616 * Moved parser from using StringBuffer to using StringBuilder
1717
1818 * Added support for CAST expression
19+
1920 select cast(col as varchar) from table
21+
2022 * Added support for modulo (a % b)
2123 * Added support for brackets quotation
2224 * Added support for NOT expr IS (expr IS NOT was already supported)
2325 * Added support for Oracles (+) Join Syntax
26+
2427 select * from taba, tabb where taba.a=tabb.a(+)
2528
2629 * Added alias visitor to add aliases to selections
2730 * Added connect visitor
2831 * TableNamesFinder moved from tests to main source
2932 * Added proper support for sets (union, intersect)
33+
3034 select a from taba union select b from tabb
3135 select a from taba intersect select b from tabb
36+
3237 * Added support for extract(year from datetime-expr)
3338 * Start implementation of analytical expressions
3439
You can’t perform that action at this time.
0 commit comments