manticore-projects

Results 451 comments of manticore-projects

Greetings! Please consider the following minimum requirement for accepting the PR: 1. Amend the JavaCC Grammar Definition file 2. Amend the toString() method of the Java Object in order to...

A quicky during the lunch break, please give it a thorough testing as I did not spend much time on this.

Works with JSQLParser 4.6. Snapshot. Closed.

> More oracle things missing as far as I remember: https://docs.oracle.com/cd/B19306_01/server.102/b14200/queries003.htm Greetings, please clarify because I think that `Hierarchical Queries` have been implemented yet and I also have added support...

> For sure. And from I think nearly 300 test sqls at the moment 172 are parsed successfully. Look into SelectOracleTest. Good chunk from the failing tests is about Oracle's...

The correct standard compliant syntax would be: ```sql CREATE TABLE test3 ( name VARCHAR (255) NOT NULL DEFAULT '' , id BIGINT (20) UNSIGNED NOT NULL , PRIMARY KEY (...

I can only repeat what I have explained before: JSQLParser does not support implicit casting like `integer '7'`. Explicit casting `Cast('7' AS integer)` or `'7'::integer` will work.

Greetings. Your quotes are wrong, this will work: ```sql INSERT INTO table_a ( code ) VALUES ( '\n print(''a string'')\n' ) ; ``` Translates to ```java String test = "INSERT...

Fixed by PR #1382 You can [test it online and interactively here](http://jsqlformatter.manticore-projects.com/jsqlformatter/demo.html?args=-c%20MoUQMiDCAqAEsCcCmBbAhgg1gKHnvANLGgA4kA2AntgGIBKA8gLKwD2KAzgPoAmaALmmwBuIA+).