-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Assorted Fixes #8 #1807
Merged
manticore-projects
merged 123 commits into
JSQLParser:master
from
manticore-projects:master
Jun 15, 2023
Merged
Assorted Fixes #8 #1807
manticore-projects
merged 123 commits into
JSQLParser:master
from
manticore-projects:master
Jun 15, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…RESH Support parsing create view statements in Redshift with AUTO REFRESH option.
Extract adding the force option into a dedicated method resulting in the cyclomatic complexity reduction of the CreateView.toString method.
Add Keywords and document, which keywords are allowed for what purpose
Derive All Keywords from Grammar directly Generate production for Object Names (semi-) automatically Add parametrized Keyword Tests
Parallel Test execution Gradle Caching Explicitly request for latest JavaCC 7.0.10
Parallel Test execution Gradle Caching Explicitly request for latest JavaCC 7.0.10
Update the MANTICORE Sphinx Theme, but ignore it in GIT Add the content to the Sphinx sites Add a Gradle function to derive Stable and Snapshot version from GIT Tags Add a Gradle GIT change task Add a Gradle sphinx task Add a special Test case for illustrating the use of JSQLParser
Implement Serializable for persisting via ObjectOutputStream
- apply neutral Sphinx theme - insert the RR diagrams into the sphinx sources - better documentation on Gradle dependencies - link GitHub repository
- add support for Oracle Alternative Quoting e.g. `q'(...)'` - fixes JSQLParser#1718 - add a Logo and FavIcon to the Website - document recent changes on Quoting/Escaping - add an example on building SQL from Java - rework the README.md, promote the Website - add Spotless Formatter, using Google Java Style (with Tab=4 Spaces)
- Merge PR JSQLParser#1691, fixes JSQLParser#1684 all credits go to @zaza
- fix the issue template - fix the -SNAPSHOT version number
- `GO` - Slash `/` - Two empty lines
- `FETCH` uses `EXPRESSION` instead of SimpleJDBCParameter only - Visit/Accept `FETCH` `EXPRESSION` instead of `append` to String - Visit/Accept `OFFSET` `EXPRESSION` instead of `append` to String - Gradle: remove obsolete/incompatible `jvmArgs` from Test()
- optionally provide a global Executor, instead spawning one for each parse - run into Complex Parsing only, when Complex Parsing was allowed - provide a Logger - fixes JSQLParser#1792
- supports chains like '{"obj":{"field": "value"}}'::JSON -> 'obj'::TEXT ->> 'field'::TEXT - fixes JSQLParser#1792
- fixes JSQLParser#1792, the very complex example - fixes JSQLParser#1477
- fixes JSQLParser#1792, the very complex example - fixes JSQLParser#1477 - cosmetics
- `SELECT "test""column""name"` - fixes JSQLParser#1335
- Show Release vs. SNAPSHOT - FURO theme - fix inline tab appearance
# Conflicts: # .github/workflows/sphinx.yml # README.md # src/main/java/net/sf/jsqlparser/expression/TrimFunction.java # src/main/java/net/sf/jsqlparser/parser/CCJSqlParserUtil.java # src/main/java/net/sf/jsqlparser/util/deparser/ExpressionDeParser.java # src/main/jjtree/net/sf/jsqlparser/parser/JSqlParserCC.jjt # src/site/sphinx/contribution.rst # src/site/sphinx/index.rst
- migration guide - Getters for List Elements - Rename Join `rightItem` to `fromItem`
# Conflicts: # src/site/sphinx/changelog.rst
- incorporates PR JSQLParser#1725, all credits to @tomershay Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
- fixes JSQLParser#1553 - remove RegExpMySQLOperator, replaced by flavoured `LIKE` expression Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
- salvages PR JSQLParser#589, credits to @wheredevel Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Migration guide for upcoming 5.0
INSERT
toString()
prints simple column names (but not fully qualified names)MySQL
NOT RLIKE
andNOT REGEXP
expressionsPostgres
NOTNULL
expressionQUALIFY
clauseFOR ...
clausefixes [BUG] JSQLParser 4.6 : postgresql : Encountered unexpected token: "QUALIFY" <S_IDENTIFIER> #1805
fixes [BUG] JSQLParser Version 4.6 : SQL Server : parsing takes too long #1800
fixes validate not support 'not rlike' #1553
fixes Possible WebSite improvements #1784