-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Add Support for TSQL NEXT VALUE FOR #1178
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
Pardon my stupid question: why does it keep referring to merged previous PRs and changes? How would I get rid of this please? |
Add support for CTEs in |
Please please please: Deactivate the rules "PMD.CyclomaticComplexity", "PMD.ExcessiveMethodLength", "PMD.NPathComplexity" for Codazy! These do not make any sense for the |
One more thing: Code Duplication. As far as I understand it, the |
fixes #1176 |
Yes, this commit behaviour is when you continue to work on your old PRs branch. Since I use "squash & merge" to merge your pull request your PR branch will not be merged into master but a single commit is created by git that merges your final overall changes. So could it be, that here are more changes than you liked? It seems to be a big PR. |
On Fri, 2021-04-30 at 15:04 -0700, Tobias wrote:
So could it be, that here are more changes than you liked? It seems
to be a big PR.
No, the PR is correct, please pull it.
I will use squash properly next time. Sorry for any incenvenience.
Cheers
It is only big because I fixed ANY and every PMD exception. Please consider adjusting the rules in Codazy, I can't do that from here.
|
Could you first remove the conflict? Then I will merge. |
Done, cheers!
…On Sat, 2021-05-01 at 12:29 -0700, Tobias wrote:
Could you first remove the conflict? Then I will merge.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Fixes #1186 |
Now there are changes in 51 files??? Really? |
Sorry, I know it is not ideal but what am I supposed to do?
the PR fixes 4 issues from the list
they all touch the JavaCC Parser files and ammend the Java Objects and
the Deparser
when submitting, your code checks complained so I hade to fix these too
(which affected 40 files alone)
which gave a lot of conflicting changes, making it really difficult to
split up
And last but not least, I work on JSQLParser in order to complete the
JSQLFormatter. Every change in JSQLParser affects the formatting and I
need a working JSQLParser
immediately after I have fixed something.
So how would you want to proceed please? You pulled the #1189 first
(understandable, because its simple) and now the PR is conflicting
again. I will fix it again.
…On Mon, 2021-05-10 at 12:58 -0700, Tobias wrote:
Now there are changes in 51 files??? Really?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
de55061
to
9184cda
Compare
fixes #1177
I do not think, that the previously implemented
NEXTVAL FOR
is correct, but I kept it in order to avoid breaking anything. Which RDBMS would support or request forNEXTVAL FOR
please?With this PR, both
NEXTVAL FOR
andNEXT VALUE FOR
will be supported. Oracle/DB2foo.nextval
is not affected.If we found out, that
NEXTVAL FOR
was obsolete, we should clean this up optionally.