| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Simplify the INSERT production Use SetOperations for Select and Values Better Bracket handling for WITH ... SELECT ... Fixes JSQLParser#1491
Appease Codazy/PMD
Appease Codazy/PMD
List the changes Minor rephrases Correct the Maven Artifact Example
|
please resolve conflicts |
Sorry, something went wrong.
|
After merging I am not able to compile anymore. |
Sorry, something went wrong.
What is the challenge please? |
Sorry, something went wrong.
|
Confirmed, I get the same problem -- very strange. How did the CI succeed? |
Sorry, something went wrong.
|
I am not able to correct this since Select SelectWithWithItems( ):
{
Select select;
List<WithItem> with = null;
}
{
LOOKAHEAD(2) (
"(" with=WithList() select = Select( with ) ")" { select.withUsingWithBrackets(true); }
)
|
(
[ with=WithList() ] select = Select( with )
)
{
return select;
}
}
yields Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (default-compile) on project jsqlparser: Compilation failure: Compilation failure: /C:/work/java/JSqlParser/target/generated-sources/javacc/net/sf/jsqlparser/parser/CCJSqlParser.java:[5631,9] unreachable statement /C:/work/java/JSqlParser/target/generated-sources/javacc/net/sf/jsqlparser/parser/CCJSqlParser.java:[5639,1] missing return statement -> [Help 1] This one I know from switching to modern JavaCC templating. Very strange. |
Sorry, something went wrong.
|
I pushed a running version. To get this state I had to remove the changes from SelectWithWithItems production |
Sorry, something went wrong.
|
Here only the Codacy and Merge checks were presented. Your change was perfectly mergeable, but this means not automatically compilable. |
Sorry, something went wrong.
|
Corrected grammar. It was semantically incomplete. |
Sorry, something went wrong.
so this seems to be complete now |
Sorry, something went wrong.
|
Good Morning, thank you for sorting this out. I am really sorry for this mess, no idea what happened. Sorry again and cheers! |
Sorry, something went wrong.
|
No problem. However, strange that this happended. BTW I found out, that travis-ci does not work since a couple of month, even that there are a lot of free build credits left. I opened a new issue here. Maybe its time to switch to Github Actions. |
Sorry, something went wrong.
Yes please, I'd like to support that, because I really do not like it when things suddenly stop to work -- without notice. |
Sorry, something went wrong.
|
Github Action Maven build activated. I have no idea how to configure this Gradle build to use multiple JDKs. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Simplify the INSERT production
Use SetOperations for Select and Values
Better Bracket handling for WITH ... SELECT ...
Fixes #1491
Following statements will work now:
( with a as (select * from dual) select * from a ); insert into table1 (tf1,tf2,tf2) ( (select sf1,sf2,sf3 from s1) union (select rf1,rf2,rf2 from r1) );