JSqlParser icon indicating copy to clipboard operation
JSqlParser copied to clipboard

JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes. The generated hierarchy can be navigated using the Visitor Pattern

Results 222 JSqlParser issues
Sort by recently updated
recently updated
newest added

next version can support [shuffle] ?

### Grammar or Syntax Description Snowflake supports an `AT | BEFORE` clause in SELECT statements to enable time travel functionality. This currently causes the statement to be unparseable. ### SQL...

improvement

Hi: when use JSqlParser to parse sql then occur exception Test load data into table code like below: @test public void testLoadDataTable() throws JSQLParserException { String sqlString = “load data...

DML
Sponsor needed

Always check against the **Latest SNAPSHOT of JSQLParser** and the [Syntax Diagram](https://jsqlparser.github.io/JSqlParser/syntax_snapshot.html) ### Failing SQL Feature: - Brief description of the failing SQL feature - Example: `Encountered unexpected token: "IF"...

DDL
postgres
Sponsor needed

Always check against the **Latest SNAPSHOT of JSQLParser** and the [Syntax Diagram](https://jsqlparser.github.io/JSqlParser/syntax_snapshot.html) ### Failing SQL Feature: - Brief description of the failing SQL feature - Example: `Encountered unexpected token: "DO"...

postgres
Sponsor needed
Procedural

I am using Informix and jsql parser to parse the SQL statements. ### Failing SQL Feature: - While using jsql parser with Informix if we use Informix set isolation statement...

exotic
Sponsor needed

### Failing SQL Feature: Parsing `CREATE TABLE` DDL query failed when there is a `KEY` parameter that uses functions like `LOWER`. The parsing fails with this error: ``` net.sf.jsqlparser.JSQLParserException: net.sf.jsqlparser.parser.ParseException:...

MySQL
DDL
Sponsor needed

### Failing SQL Feature: "with as (update xxx)" can't be parsed the error is Caused by: java.util.concurrent.ExecutionException: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "update" "UPDATE" at line 2, column 9. Was expecting:...

duplicate

I tried using 3 versions: 4.5, 4.6, 4.7. I want to get table name from this sql: ``` CREATE TABLE `sys_user` ( `id` bigint NOT NULL, `role_id` bigint NULL, `name`...

DDL

I notice that the parser seems to create incorrect index types from create table statements when multiple constraints are defined. The index type then depends on the order of constraints....

bug