You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ JSqlParser is dual licensed under **LGPL V2.1** or **Apache Software License, Ve
22
22
Please provide feedback on https://github.com/JSQLParser/JSqlParser/issues/677, about removing bracket identifier quotation to support array processing.
23
23
24
24
## News
25
+
* breaking **API** change: to support chained functions attribute type was changed to **Expression**
25
26
* Released version **1.4** of JSqlParser
26
27
* Released version **1.3** of JSqlParser
27
28
* Changed behaviour of dotted multipart names for user variables, tables and columns to accept e.g. ORM class names. To achieve this some behaviour of name parsing had to be changed. Before this the parser would fail missing databasenames for SqlServer queries (server..schema.table). But this is allowed for the schema (server.database..table). Now the parser accepts missing inner names per se to avoid some very complicated parsing rules.
@@ -58,6 +59,7 @@ Also I would like to know about needed examples or documentation stuff.
58
59
59
60
## Extensions in the latest SNAPSHOT version 2.0
60
61
62
+
* support for chained functions
61
63
* first support for **FOR XML PATH**
62
64
* support for **NEXTVAL FOR**
63
65
* changed all source code license headers to reflect the dual license of JSqlParser more correctly
Copy file name to clipboardExpand all lines: src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3412,6 +3412,11 @@ public void testForXmlPath() throws JSQLParserException {
3412
3412
assertSqlCanBeParsedAndDeparsed("SELECT '|' + person_name FROM person JOIN person_group ON person.person_id = person_group.person_id WHERE person_group.group_id = 1 FOR XML PATH('')");
0 commit comments