@@ -13,6 +13,7 @@ JSqlParser is dual licensed under **LGPL V2.1** and **Apache Software License, V
13
13
14
14
## News
15
15
16
+ * Version ** 0.9.5** released.
16
17
* Please test the actual ** 0.9.5-SNAPSHOT** . It includes some grammar refactorings which eventually results in parse tree changes.
17
18
* Version ** 0.9.4** released.
18
19
* Please test the actual SNAPSHOT, if there are problems using the extended identifier token.
@@ -37,38 +38,7 @@ To help JSqlParsers development you are encouraged to provide
37
38
38
39
Also I would like to know about needed examples or documentation stuff.
39
40
40
- ## Extensions in the latest SNAPSHOT version 0.9.5
41
-
42
- * introduced first support for boolean valued column conditions
43
-
44
- ~~~
45
- SELECT * FROM mytable WHERE mytable.boolValue;
46
- ~~~
47
-
48
- * improved parenthesis parsing performance within expressions (#215 )
49
- * support for ** ALTER TABLE mytable ADD CONSTRAING name PRIMARY KEY (col)**
50
- * support for ** INSERT LOW_PRIORITY INTO**
51
- * support for ** ORDER BY** and ** LIMIT** in ** UPDATE** and ** DELETE** statements
52
-
53
- ~~~
54
- UPDATE tablename SET ... ORDER BY col;
55
- UPDATE tablename SET ... ORDER BY col LIMIT 10;
56
- UPDATE table1 A SET ... LIMIT 10;
57
- DELETE FROM tablename LIMIT 5;
58
- DELETE FROM tablename ORDER BY col;
59
- DELETE FROM tablename ORDER BY col LIMIT 10;
60
- ~~~
61
-
62
- * support for ** INSERT ... ON DUPLICATE KEY UPDATE**
63
- * improved support for ** ALTER TABLE** statements
64
- * first Oracle hint support for ** SELECT** statements
65
- * first ** ALTER TABLE FOREIGN KEY** support
66
- * first ** MERGE** support
67
- * first version of escaped single quotes support
68
-
69
- ~~~
70
- select '\''
71
- ~~~
41
+ ## Extensions in the latest SNAPSHOT version 0.9.6
72
42
73
43
## Extensions of JSqlParser releases
74
44
@@ -109,7 +79,7 @@ And this is the dependency declaration in your pom:
109
79
<dependency >
110
80
<groupId >com.github.jsqlparser</groupId >
111
81
<artifactId >jsqlparser</artifactId >
112
- <version >0.9.4 </version >
82
+ <version >0.9.5 </version >
113
83
</dependency >
114
84
```
115
85
0 commit comments