manticore-projects
manticore-projects
Closed, since no further question has been asked.
As @wumpz mentioned: 1) take the class `Insert` as a template (and maybe rename it to 'InsertInto') 2) create a new class 'InsertOverwrite` 3) provide tokens for it in the...
Should be address by PR #1666.
Rob, there was an unrelated PR merged last night, which breaks the tests. I have provided a fix already, but we will need to wait for it to get merged...
I definitely will, just wait please until Master builds again. It wasn't me but it affects my work as well.
It's a thing of beauty now and well executed! One recommendation: You may want to add `` to the `RelObjectWithoutValue` Production in order to allow it as Column, Table, Alias,...
> You meant: `RelObjectNameWithoutValue` right? Yes. > I'm not really sure if that is correct/something desired? At least PostgreSQL does not allow it to be used as Table without quoting...
Yes, it certainly can. However only @wumpz can merge.On 16 Aug 2022 08:50, Rob Audenaerde ***@***.***> wrote: @manticore-projects can this be pulled now? :) —Reply to this email directly, view...
You are my hero, Sir! ``` Aug 18, 2022 8:10:28 PM net.sf.jsqlparser.statement.select.SpecialOracleTest recordSuccessOnSourceFile INFO: NEW SUCCESS: interval05.sql Aug 18, 2022 8:10:29 PM net.sf.jsqlparser.statement.select.SpecialOracleTest testAllSqlsParseDeparse INFO: tested 276 files. got 192...
Postgres implicit casts are not supported. Explicit cast will work: ``` SELECT ( '1'::integer ) ; SELECT CAST('1' AS integer) ; ``` Duplicate of #1344