manticore-projects

Results 48 issues of manticore-projects

Hi Julian, everything works fine when creating a fresh Parser. However, when I serialize the parser and de-serialize it (successfully without any error), the parse will fail: ``` Caused by:...

bug

Dear Julian and Team, first of all, thanks a lot for providing this project. I have figured out, how to make use of the Utility files. See the example below....

Greetings! First of all, thank you for this amazing software. We do love it. Although I have a question. We want to used JLabels and assign style classes `H00`, `H0`,...

Fixes PR #1524 support hive alter sql and Commit [fb6e950](https://github.com/JSQLParser/JSqlParser/commit/fb6e950ce0e62ebcd7a44ba9eea679da2b04b2ed)

Rewrite the Reserved Keywords Logic: 1) Automatically Derive all Keyword Tokens from the Parser. 2) Explicitly add Reserved Keywords to the Grammar and classify, why/when it is reserved. 3) Auto-generate...

From https://github.com/dbeaver/dbeaver/issues/16756. Two large TSQL files: https://github.com/jOOQ/sakila/blob/main/sql-server-sakila-db/sql-server-sakila-schema.sql https://github.com/jOOQ/sakila/blob/main/sql-server-sakila-db/sql-server-sakila-insert-data.sql

improvement

https://github.com/i-net-software/JWebAssembly/issues/43 refers. How can we share the auto-generated Sources?

improvement

This is just a reminder for myself, so far I found the following Oracle specific statements missing: - ~~`ALTER SYSTEM`~~ Fixed by PR #1288 - ~~`RENAME table TO ...`~~ Fixed...

improvement

Just stumpled over this: ```sql -- LISTAGG 3: fails to parse SELECT LISTAGG(ID, ', ') WITHIN GROUP (ORDER BY ID) OVER (ORDER BY ID); -- ARRAY_AGG 2: fails to deparse...

improvement
refactor

JSQLParser 4.1: ```sql -- Nested Comments failure select /*this is a /*nested!!!*/ comment*/ 1 from dual; ``` at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatements(CCJSqlParserUtil.java:206) at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatements(CCJSqlParserUtil.java:194) at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:28225) at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:28064) at net.sf.jsqlparser.parser.CCJSqlParser.Statements(CCJSqlParser.java:623) at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatements(CCJSqlParserUtil.java:204) This...