Skip to content

Commit 04db124

Browse files
committed
corrected stackoverflow while tables extraction
updated readme
1 parent 1c411f4 commit 04db124

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ JSqlParser is dual licensed under **LGPL V2.1** and **Apache Software License, V
2222
Please provide feedback on https://github.com/JSQLParser/JSqlParser/issues/677, about removing bracket identifier quotation to support array processing.
2323

2424
## News
25+
* Released version **1.4** of JSqlParser
2526
* Released version **1.3** of JSqlParser
2627
* 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.
2728
* Released version **1.2** of JSqlParser
@@ -52,10 +53,9 @@ To help JSqlParser's development you are encouraged to provide
5253

5354
Also I would like to know about needed examples or documentation stuff.
5455

55-
## Extensions in the latest SNAPSHOT version 1.4
56+
## Extensions in the latest SNAPSHOT version 2.0
5657

57-
* support of **substring(col from 2), position('test' in col), ..** and more (pull request #702)
58-
* support of db2 **VALUES** syntax (issue #561)
58+
* support of **describe**
5959

6060
## Extensions of JSqlParser releases
6161

src/main/java/net/sf/jsqlparser/util/TablesNamesFinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,6 +851,6 @@ public void visit(ValuesStatement values) {
851851

852852
@Override
853853
public void visit(DescribeStatement describe) {
854-
describe.accept(this);
854+
describe.getTable().accept(this);
855855
}
856856
}

0 commit comments

Comments
 (0)