Skip to content

Commit 0544a82

Browse files
doc: fixes
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
1 parent 1284bf5 commit 0544a82

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
[![Gradle CI](https://github.com/JSQLParser/JSqlParser/actions/workflows/ci.yml/badge.svg)](https://github.com/JSQLParser/JSqlParser/actions/workflows/ci.yml)
5-
[![Coverage Status](https://coveralls.io/repos/JSQLParser/JSqlParser/badge.svg?branch=master)](https://coveralls.io/r/JSQLParser/JSqlParser?branch=master)
5+
[![Coverage Status](https://coveralls.io/repos/JSQLParser/JSqlParser/badge.svg?branch=master)](https://coveralls.io/r/JSQLParser/JSqlParser?branch=master)
66
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/6f9a2d7eb98f45969749e101322634a1)](https://www.codacy.com/gh/JSQLParser/JSqlParser/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=JSQLParser/JSqlParser&amp;utm_campaign=Badge_Grade)
77
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.jsqlparser/jsqlparser/badge.svg)](http://maven-badges.herokuapp.com/maven-central/com.github.jsqlparser/jsqlparser) [![Javadocs](https://www.javadoc.io/badge/com.github.jsqlparser/jsqlparser.svg)](https://www.javadoc.io/doc/com.github.jsqlparser/jsqlparser)
88
[![Gitter](https://badges.gitter.im/JSQLParser/JSqlParser.svg)](https://gitter.im/JSQLParser/JSqlParser?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
@@ -26,7 +26,7 @@ SQL Text
2626
└─where: expression.operators.relational.EqualsTo
2727
├─Column: a
2828
└─Column: b
29-
*/
29+
*/
3030
```
3131

3232
```java
@@ -50,7 +50,7 @@ Assertions.assertEquals("a", a.getColumnName());
5050
Assertions.assertEquals("b", b.getColumnName());
5151
```
5252

53-
JSQLParser-4.9 was the last JDK8 compatible version. The recent JSQLParser-5.0 depends on JDK11 and introduces API breaking changes to the AST Visitors. Please see the Migration Guide for the details.
53+
JSQLParser-4.9 was the last JDK8 compatible version. JSQLParser-5.0 and later depend on JDK11 and introduce API breaking changes to the AST Visitors. Please see the Migration Guide for the details.
5454

5555
## [Supported Grammar and Syntax](https://jsqlparser.github.io/JSqlParser/syntax.html)
5656

@@ -60,7 +60,7 @@ JSQLParser-4.9 was the last JDK8 compatible version. The recent JSQLParser-5.0 d
6060
|-----------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
6161
| Oracle<br>MS SQL Server and Sybase<br>Postgres<br>MySQL and MariaDB<br>DB2<br>H2 and HSQLDB and Derby<br>SQLite | `SELECT`<br>`INSERT`, `UPDATE`, `UPSERT`, `MERGE`<br>`DELETE`, `TRUNCATE TABLE`<br>`CREATE ...`, `ALTER ....`, `DROP ...`<br>`WITH ...` |
6262
| Salesforce SOQL | `INCLUDES`, `EXCLUDES` |
63-
| Piped SQL (also know as FROM SQL) | |
63+
| Piped SQL (also known as FROM SQL) | |
6464

6565
**JSqlParser** can also be used to create SQL Statements from Java Code with a fluent API (see [Samples](https://jsqlparser.github.io/JSqlParser/usage.html#build-a-sql-statements)).
6666

src/site/sphinx/index.rst

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Java SQL Parser Library
3434
:alt: Maven Badge
3535
:target: https://mvnrepository.com/artifact/com.github.jsqlparser/jsqlparser
3636

37-
.. image:: https://github.com/JSQLParser/JSqlParser/actions/workflows/maven.yml/badge.svg
38-
:alt: Maven Build Status
39-
:target: https://github.com/JSQLParser/JSqlParser/actions/workflows/maven.yml
37+
.. image:: https://github.com/JSQLParser/JSqlParser/actions/workflows/ci.yml/badge.svg
38+
:alt: CI Status
39+
:target: https://github.com/JSQLParser/JSqlParser/actions/workflows/ci.yml
4040

4141
.. image:: https://coveralls.io/repos/JSQLParser/JSqlParser/badge.svg?branch=master
4242
:alt: Coverage Status
@@ -50,9 +50,10 @@ Java SQL Parser Library
5050
:alt: Java Docs
5151
:target: https://javadoc.io/doc/com.github.jsqlparser/jsqlparser/latest/index.html
5252

53+
A huge thank you to our sponsor, [Starlake.ai](https://starlake.ai/) who simplifies data ingestion, transformation, and orchestration, enabling faster delivery of high-quality data. Starlake has been instrumental in providing Piped SQL and numerous test cases for BigQuery, Redshift, DataBricks, and DuckDB. Show your support for ongoing development by visiting Starlake.ai and giving us a star!
5354

5455
**JSQLParser** is a SQL statement parser built from JavaCC. It translates SQLs in a traversable hierarchy of Java classes.
55-
The upcoming 5.0 release will depend on Java 11 and introduces new Visitors. Please see the :ref:`Migration to 5.0` guide.
56+
Since the 5.0 release JSQLParser depends on Java 11 and has introduced new Visitors. Please see the :ref:`Migration to 5.0` guide.
5657

5758
Latest stable release: |JSQLPARSER_STABLE_VERSION_LINK|
5859

@@ -89,6 +90,11 @@ SQL Dialects
8990
* MySQL and MariaDB
9091
* PostgreSQL
9192
* H2
93+
* DuckDB
94+
* Google BigQuery
95+
* Amazon Redshift
96+
* DataBricks
97+
* Snowflake
9298

9399
*******************************
94100
Features
@@ -107,6 +113,7 @@ Features
107113
* Arrays vs. T-SQL Squared Bracket Quotes
108114
* Fluent API to create SQL Statements from java Code
109115
* Statement De-Parser to write SQL from Java Objects
116+
* Piped SQL (also known as FROM SQL)
110117

111118

112119

0 commit comments

Comments
 (0)