Jan
Jan
In my case, I had to: 1. Follow the instructions here 2. Use `msvs_version 2022` instead of 2017 on the configure command: ``` npm ERR! gyp ERR! find VS npm...
I gave a shot to this approach and ran into a couple of snags particularly around the permissions on the directory, might be related to mac/docker or not setting `-u`...
32 or 64bit java?
Ah, i think it might be thinking your platform is 64bit when you're using a 32bit JDK. There's a section in the memory meter where it tries to determine if...
@simbo1905 i recently implemented a new feature here #977 I found that referencing the grammar for javacc: https://javacc.github.io/javacc/documentation/grammar.html and the oracle SQL grammar (ebnf) sort of made it Straight forward....
More oracle things missing as far as I remember: https://docs.oracle.com/cd/B19306_01/server.102/b14200/queries003.htm
@wheredevel This is a really silly idea but, could you theoretically do a clone by doing this ``` Statement s1 = JsqlParseUtil.parse("SELECT * FROM BLAH"); Statement clone = JsqlParseUtil.parse(s1.toString()); ```...
@mkobit @basil I was able to get around this, I think it has to do with the creation of the `index` file. We have something like this in our build.gradle:...
@basil thanks for that, I was just looking at how to do something similar to my resolution (for an unrelated gradle project). Your hunch about the `index` and directory issue...
I have a working prototype (without unit tests) of something like this here: https://github.com/AnEmortalKid/swagger-maven-plugin/tree/OAS-V3 At the moment, it is it's own goal (since I wanted to work on a separate...