manticore-projects

Results 463 comments of manticore-projects

Good Morning, awesome work and much appreciated. I will try as soon as possible. On the Logger/ResourceBundle: 1. I think, a lot of Java libraries will call the Java Logger...

Also, you mention Java-8 as a requirement. However, this seems to be misleading as it yields into a `java.lang.UnsupportedClassVersionError`: ```shell are@archlinux ~/d/s/J/JSQLFormatter (main) [1]> JAVA_HOME=/usr/lib/jvm/java-8-openjdk gradle --no-build-cache wasm FAILURE: Build...

Looks good to me, please approve.

Greetings. First of all, your sample has inconsistent brackets: ```sql SELECT * FROM sub_data_cust1 a LEFT JOIN ( SELECT * FROM sub_data_cust2 a WHERE A.STD_YM BETWEEN TO_CHAR(ADD_MONTHS(SYSDATE, -15), 'YYYYMM') AND...

This is a valid example and JSQLParser parses it: ```sql SELECT id, name, gender, COUNT(gender) OVER (PARTITION BY gender) AS Total_students, AVG(age) OVER (PARTITION BY gender) AS Average_Age, SUM(total_score) OVER...

If you would like to receive help and support, then please: 1) trim you example down to the shortest simplified illustration 2) address our concern, that `PARTITION BY` should be...

Greetings. I have tried to trim your query to the relevant clauses: ```sql SELECT b.comp_cd , b.cust_cd , b.brnd_cd , b.larg_ctg_cd , Sum( b.sale_amt ) AS sale_amt FROM a LEFT...

This part is invalid: ```sql BETWEEN S2.ALY_BGN_DT(+) AND S2.ALY_ND_DT(+) ``` Although I will appreciate when you won't mix completely unrelated questions into one issue. 1) has the question about `PARTITION...

> 2\. would you like to test any other statement first and ensure that your syntax is actually valid please? > => This is a query used in real work....

> Even if ParserException occurs using JSqlParser > Can I get SelectItems? > Is there a way to extract only column information? Although there is an `ErrorRecovery` feature, it seems...