Add Support for TSQL NEXT VALUE FOR#1178
Add Support for TSQL NEXT VALUE FOR#1178manticore-projects wants to merge 0 commit intoJSQLParser:masterfrom
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 FORis correct, but I kept it in order to avoid breaking anything. Which RDBMS would support or request forNEXTVAL FORplease?With this PR, both
NEXTVAL FORandNEXT VALUE FORwill be supported. Oracle/DB2foo.nextvalis not affected.If we found out, that
NEXTVAL FORwas obsolete, we should clean this up optionally.