Skip to content

Commit 58e863c

Browse files
doc: mention running gradle check
Signed-off-by: Andreas Reichel <[email protected]>
1 parent 8f12496 commit 58e863c

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

src/site/sphinx/contribution.rst

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,22 @@ The JSQLParser is generated by ``JavaCC`` based on the provided Grammar. The Gra
6161
* The complete test suite must succeed.
6262

6363
5) Add the description of the new feature to the ``README.md`` file, section `Extensions`.
64-
6) Build the package with ``Maven`` and ensure, all checks do pass (PMD and CheckStyle and Code Formatting).
64+
6) Build the package with ``Gradle`` and ensure, all checks do pass (PMD and CheckStyle and Code Formatting).
65+
.. tab:: Gradle
66+
67+
.. code-block:: shell
68+
:caption: Gradle `check` Task
69+
70+
gradle check
71+
72+
.. tab:: Maven
73+
74+
.. code-block:: shell
75+
:caption: Maven `verify` Task
76+
77+
mvn verify
78+
79+
7) Create your `GitHub Pull Request <https://www.youtube.com/watch?v=nCKdihvneS0>`_
6580

6681
Manage Reserved Keywords
6782
------------------------------

src/site/sphinx/unsupported.rst

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@ Unsupported Grammar of various RDBMS
55
*JSQLParser* is a RDBMS agnostic parser with a certain focus on SQL:2016 Standard compliant Queries and the "Big Four" (Oracle, MS SQL Server, Postgres, MySQL/MariaDB).
66
We would like to recommend writing portable, standard compliant SQL in general.
77

8-
- Postgres Implicit cast is not supported.
9-
10-
.. code-block:: java
11-
12-
SELECT date '2022-12-31';
13-
SELECT double precision 1;
14-
15-
168
- Oracle PL/SQL blocks are not support.
179

1810
.. code-block:: sql
@@ -40,10 +32,6 @@ We would like to recommend writing portable, standard compliant SQL in general.
4032

4133
While *JSQLParser* provides a lot of generic support for DDL statements, it is possible that certain RDBMS specific syntax (especially about indices, encodings, compression) won't be supported.
4234

43-
- `JSON` or `XML` specific syntax and functions
44-
45-
While *JSQLParser* provides a lot of generic support for `JSON` or `XML` processing, it is possible that certain RDBMS specific syntax or functions won't be supported.
46-
4735
- Interval Operators
4836

4937
Anything like `DAY HOUR MINUTE SECOND [TO HOUR MINUTE SECOND]` is not supported.:

0 commit comments

Comments
 (0)