-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixes #1684: Support CREATE MATERIALIZED VIEW with AUTO REFRESH Support parsing create view statements in Redshift with AUTO REFRESH option. * Reduce cyclomatic complexity in CreateView.toString Extract adding the force option into a dedicated method resulting in the cyclomatic complexity reduction of the CreateView.toString method. * Enhanced Keywords Add Keywords and document, which keywords are allowed for what purpose * Fix incorrect tests * Define Reserved Keywords explicitly Derive All Keywords from Grammar directly Generate production for Object Names (semi-) automatically Add parametrized Keyword Tests * Fix test resources * Adjust Gradle to JUnit 5 Parallel Test execution Gradle Caching Explicitly request for latest JavaCC 7.0.10 * Do not mark SpeedTest for concurrent execution * Remove unused imports * Adjust Gradle to JUnit 5 Parallel Test execution Gradle Caching Explicitly request for latest JavaCC 7.0.10 * Do not mark SpeedTest for concurrent execution * Remove unused imports * Sphinx Documentation 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 * doc: request for `Conventional Commit` messages * feat: make important Classes Serializable Implement Serializable for persisting via ObjectOutputStream * chore: Make Serializable * doc: Better integration of the RR diagrams - apply neutral Sphinx theme - insert the RR diagrams into the sphinx sources - better documentation on Gradle dependencies - link GitHub repository * Merge * feat: Oracle Alternative Quoting - add support for Oracle Alternative Quoting e.g. `q'(...)'` - fixes #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) * style: Appease PMD/Codacy * doc: fix the issue template - fix the issue template - fix the -SNAPSHOT version number * Update issue templates * Update issue templates * feat: Support more Statement Separators - `GO` - Slash `/` - Two empty lines --------- Co-authored-by: zaza <tzarna@gmail.com>
- Loading branch information
1 parent
2ced7de
commit e71e57d
Showing
26 changed files
with
5,739 additions
and
2,340 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,41 @@ | ||
--- | ||
name: SQL Parser Error | ||
name: @ SQL Parser Error | ||
about: Create a report to help us improve | ||
title: 'JSQLParser Version : RDBMS : failing feature description' | ||
title: '[BUG] JSQLParser Version : RDBMS : failing feature description' | ||
labels: 'Parser Error', 'Feature Request', 'Documentation', 'Java API', 'RDBMS support' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Failing SQL Feature** | ||
<!-- | ||
Note: Please search to see if an issue already exists for the bug you encountered. | ||
--> | ||
|
||
### Failing SQL Feature: | ||
<!-- | ||
- Brief description of the failing SQL feature | ||
- Example: `WITH ROLLUP` can't be parsed | ||
--> | ||
|
||
**SQL Example** | ||
### SQL Example: | ||
<!-- | ||
- Simplified Query Example, focusing on the failing feature | ||
```sql | ||
-- Replace with your ACTUAL example | ||
select 1 | ||
from dual | ||
``` | ||
--> | ||
|
||
**Software Information** | ||
### Software Information: | ||
<!-- | ||
- JSqlParser version | ||
- Database (e. g. Oracle, MS SQL Server, H2, PostgreSQL, IBM DB2 ) | ||
--> | ||
|
||
**Tips** | ||
### Tips: | ||
<!-- | ||
Please write in English and avoid Screenshots (as we can't copy and paste content from it). | ||
[Try your example online with the latest JSQLParser](http://217.160.215.75:8080/jsqlformatter/demo.html) and share the link in the error report. | ||
Do provide Links or References to the specific Grammar and Syntax you are trying to use. | ||
--> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an unsupported Statement or Expression | ||
title: "[FEATURE] missing feature description" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Grammar or Syntax Description | ||
- Brief description of the failing SQL feature and the EBNF | ||
- Example: `WITH ROLLUP` clause is not supported yet | ||
|
||
### SQL Example | ||
- Simplified Query Example, focusing on the failing feature | ||
```sql | ||
-- Replace with your ACTUAL example | ||
select 1 | ||
from dual | ||
``` | ||
- Please don't send screen shots | ||
### Additional context | ||
The used JSQLParser Version (please test the latest SNAPSHOT version before submitting). | ||
State the applicable RDBMS and version | ||
Links to the reference documentation | ||
### Tips: | ||
<!-- | ||
Please write in English and avoid Screenshots (as we can't copy and paste content from it). | ||
--> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
name: SQL Parser Error | ||
about: Report a Parser Error | ||
title: "[BUG] JSQLParser Version : RDBMS : failing feature description" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
Always check against the **Latest SNAPSHOT of JSQLParser** and the [Syntax Diagram](https://jsqlparser.github.io/JSqlParser/syntax.html) | ||
|
||
### Failing SQL Feature: | ||
- Brief description of the failing SQL feature | ||
- Example: `WITH ROLLUP` can't be parsed | ||
|
||
### SQL Example: | ||
- Simplified Query Example, focusing on the failing feature | ||
```sql | ||
-- Replace with your ACTUAL example | ||
select 1 | ||
from dual | ||
``` | ||
|
||
### Software Information: | ||
- JSqlParser version | ||
- Database (e. g. Oracle, MS SQL Server, H2, PostgreSQL, IBM DB2 ) | ||
|
||
### Tips: | ||
Please write in English and avoid Screenshots (as we can't copy and paste content from it). | ||
[Try your example online with the latest JSQLParser](http://217.160.215.75:8080/jsqlformatter/demo.html) and share the link in the error report. | ||
Do provide Links or References to the specific Grammar and Syntax you are trying to use. |
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
Oops, something went wrong.