| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
I have concerns on this implementation, when building this statement with java code.
Sorry, something went wrong.
| [ LOOKAHEAD(<K_FETCH>) fetch = Fetch() { plainSelect.setFetch(fetch); } ] | ||
| [ LOOKAHEAD(<K_WITH> <K_ISOLATION>) withIsolation = WithIsolation() { plainSelect.setIsolation(withIsolation); } ] | ||
| [ LOOKAHEAD(2) <K_FOR> <K_UPDATE> { plainSelect.setForUpdate(true); } | ||
| [ LOOKAHEAD(2) |
There was a problem hiding this comment.
This looks much better, well done!
Sorry, something went wrong.
| } | ||
|
|
||
| @Test | ||
| public void testIssue1878ViaJava() throws JSQLParserException { |
There was a problem hiding this comment.
Good!
Sorry, something went wrong.
|
Thank you a lot for providing this implementation! |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
close #1878
MySQL: FOR {UPDATE | SHARE}
PostgreSQL: FOR { UPDATE | NO KEY UPDATE | SHARE | KEY SHARE }