Diego Krupitza
Diego Krupitza
For people like me who are not fluent in chinese it is often hard to find around in the project documentation or helping out when seeing issues or PRs. The...
**Describe the bug** When I want to parse the following query ```sql select p from Customer c join c.productOrder p where p.delayed = true ``` using `(Select) CCJSqlParserUtil.parse(query);` I get...
Checking whether a given number is zero or one is now more pleasant to write and read. It is not longer needed to to use `c -> c.equalTo(0)` or `c...
The `detectParsedType()` inside `JSqlParserQueryEnhancer` is now aware of `INSERT` statements, which means `INSERT` statements can now be used in native queries. Closes #2593 - [x] You have read the [Spring...
I have seen that there are few issues open, that are related to JPQL queries not parsed correctly. * #1919 * #2348 * #2341 * #2074 * #2045 * #2032...
In #2564 we discovered that sometimes queries contain content that cannot be parsed by special implementation such as `JSqlParserQueryEnhancer`. Therefore, we implement a fallback mechanism that tries to use the...
As discovered in #2642 `QueryUtils` does not correctly detect the alias which is used in a merge statement. Hence the following test case fails: ```java @Test void queryUtilsDetectsMergeAliasCorrectly() { String...
## Please review previous closed issues before filling out a new one! Duplicate issues will be closed without comment. **Describe the bug** In https://github.com/QasimWani/LeetHub/pull/348#issuecomment-1263449338 I highlighted that the changes proposed...
Allows used to add a command line flag called `--benchmark_human_readable`. By adding this flag the arguments passed to benchmarks are formated in a human friendly format. This means that numbers...