Skip to content

Commit 6d95472

Browse files
committed
fixes #163
1 parent 1db3ff5 commit 6d95472

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ JSqlParser is dual licensed under **LGPL V2.1** and **Apache Software License, V
1717

1818

1919
## News
20+
* changed behaviour of dotted multipart names for tables and columns to accept ORM class names
2021
* Released version **1.2** of JSqlParser
2122
* breaking **API** change: merge of *within group* and *over* (window expressions)
2223
* Released version **1.1** of JSqlParser.
@@ -47,6 +48,9 @@ Also I would like to know about needed examples or documentation stuff.
4748

4849
## Extensions in the latest SNAPSHOT version 1.3
4950

51+
* changed behaviour of dotted multipart names for tables and columns to accept ORM class names (issue #163)
52+
** the parser allows now empty inner names, to still accept missing schema names for SQLServer (db..col)
53+
** methods like **getDatabase** will still work but have no sense using it for classnames
5054
* named parameter for **OFFSET** (issue #612)
5155
* corrected ISNULL regression (issue #610)
5256
* refactored statement test classes to the class corresponding packages

src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3215,5 +3215,5 @@ public void testMultiPartNamesIssue163() throws JSQLParserException {
32153215
@Test
32163216
public void testMultiPartNamesIssue608() throws JSQLParserException {
32173217
assertSqlCanBeParsedAndDeparsed("SELECT @@session.tx_read_only");
3218-
}
3218+
}
32193219
}

0 commit comments

Comments
 (0)