Skip to content

Commit

Permalink
fixes #163
Browse files Browse the repository at this point in the history
  • Loading branch information
wumpz committed Jun 17, 2018
1 parent 1db3ff5 commit 6d95472
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ JSqlParser is dual licensed under **LGPL V2.1** and **Apache Software License, V


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

## Extensions in the latest SNAPSHOT version 1.3

* changed behaviour of dotted multipart names for tables and columns to accept ORM class names (issue #163)
** the parser allows now empty inner names, to still accept missing schema names for SQLServer (db..col)
** methods like **getDatabase** will still work but have no sense using it for classnames
* named parameter for **OFFSET** (issue #612)
* corrected ISNULL regression (issue #610)
* refactored statement test classes to the class corresponding packages
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3215,5 +3215,5 @@ public void testMultiPartNamesIssue163() throws JSQLParserException {
@Test
public void testMultiPartNamesIssue608() throws JSQLParserException {
assertSqlCanBeParsedAndDeparsed("SELECT @@session.tx_read_only");
}
}
}

0 comments on commit 6d95472

Please sign in to comment.