Tobias
Tobias
In one of PRs that were never deployed to 4.3-SNAPSHOT there was a construct included using a new keyword "database". That's why in the release this does not work anymore....
This is not (yet) supported. PRs are welcome.
So back from Holidays. So we are going for the huge commit, do we? Should I look at the conflicting files or do you? Whats the next step?
@abourakba Is this something like SqlServer hints (**with (index)** )?
@manticore-projects To be honest I have no idea how you want to externalize this, since that would result in some kind of optional tokens. There was a huge discussion about...
Ah. Ok. I get it. I was more referring to this bracket thing. I prefer to build a correct parser. This kind of wrappers feels like a hack.
Could it be as simple as this, that you tried something like this: assertSqlCanBeParsedAndDeparsed("SELECT 'c c\', 'dd', 'ee\'"); Here we have a single backslash escaping the quotation which results in...
I tested a variant of your problem SQL with Postgresql: SELECT * FROM T WHERE t1 LIKE 'test\m' ESCAPE '\' Using this I could confirm, that the database looked for...
So the question is, is this statement of yours with a quotation correct? For which database? SELECT * FROM T WHERE t1 LIKE 'test\'' ESCAPE '\' AND (t2 = 'a')
@wheredevel This statement does not run on SqlServer SELECT * FROM T WHERE t1 LIKE 'test\'' ESCAPE '\' AND (t2 = 'a') for the same reasons like Postgresql. `\'` is...