-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Support FOR UPDATE WAIT #405
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
You are introducing reformatting of PlainSelect. A PR should only adress its issue. |
is Codacy only looking at junit.framework.Assert (iirc that was deprecated: "Deprecated. Please use org.junit.Assert instead.". |
That is junit v3. We are using junit 4. The package is something like org.junit. |
Based on the imports for PlainSelect:
It looks like it's using the wrong one (junit.framework) instead of org.junit. And TestUtils looks like it might also be using the wrong one:
I'll update my statements to just use assertNotNull (whatever is statically imported). Unless you'd like me to change the import since it might have slipped as the wrong one at some point? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could it be that you are changing linefeeds as well. If you look at the five changed files, there are great passages that are replaced. So it is very hard to review your PR.
Ah yeah, I see I messed up the deparser. I'll get that fixed.
On Fri, Mar 10, 2017 at 7:01 AM Jan Monterrubio <janmonterrubio@gmail.com>
wrote:
…
On Fri, Mar 10, 2017 at 1:41 AM Tobias ***@***.***> wrote:
***@***.**** requested changes on this pull request.
Could it be that you are changing linefeeds as well. If you look at the
five changed files, there are great passages that are replaced. So it is
very hard to review your PR.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#405 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADUDwXNV4KL5NnWeqQdqgW71MGhEcNNnks5rkP6ugaJpZM4MWLhu>
.
|
It looks like there's support for
SELECT FOR UPDATE OF, however, Oracle SQL has a FOR UPDATE (WAIT|NOWAIT) syntax, seen here:
https://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_10002.htm#i2126016
I've added support for WAIT (integer).