Skip to content

Commit d529c82

Browse files
committed
fixes #608
1 parent 3f5e3c9 commit d529c82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +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
20+
* 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 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.
2121
* Released version **1.2** of JSqlParser
2222
* breaking **API** change: merge of *within group* and *over* (window expressions)
2323
* Released version **1.1** of JSqlParser.

src/main/jjtree/net/sf/jsqlparser/parser/JSqlParserCC.jjt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
options{
2424
IGNORE_CASE = true ;
2525
STATIC = false;
26-
DEBUG_PARSER = true;
26+
DEBUG_PARSER = false;
2727
DEBUG_LOOKAHEAD = false;
2828
DEBUG_TOKEN_MANAGER = false;
2929
CACHE_TOKENS = false;

0 commit comments

Comments
 (0)