Skip to content

Commit

Permalink
Add docs for update statements to JDBC connectors
Browse files Browse the repository at this point in the history
  • Loading branch information
colebow authored and mosabua committed Oct 4, 2023
1 parent dcc2b73 commit 96653c5
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 8 deletions.
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/ignite.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ Ignite. In addition to the {ref}`globally available
statements, the connector supports the following features:

- {doc}`/sql/insert`
- {doc}`/sql/update`
- {doc}`/sql/delete`
- {doc}`/sql/create-table`
- {doc}`/sql/create-table-as`
Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/mariadb.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ a MariaDB database. In addition to the {ref}`globally available
statements, the connector supports the following features:

- {doc}`/sql/insert`
- {doc}`/sql/update`
- {doc}`/sql/delete`
- {doc}`/sql/truncate`
- {doc}`/sql/create-table`
Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ MySQL database. In addition to the {ref}`globally available <sql-globally-availa
the following statements:

- {doc}`/sql/insert`
- {doc}`/sql/update`
- {doc}`/sql/delete`
- {doc}`/sql/truncate`
- {doc}`/sql/create-table`
Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/oracle.md
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ and {ref}`read operation <sql-read-operations>` statements, the connector
supports the following statements:

- {doc}`/sql/insert`
- {doc}`/sql/update`
- {doc}`/sql/delete`
- {doc}`/sql/truncate`
- {doc}`/sql/create-table`
Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ PostgreSQL. In addition to the {ref}`globally available
statements, the connector supports the following features:

- {doc}`/sql/insert`
- {doc}`/sql/update`
- {doc}`/sql/delete`
- {doc}`/sql/truncate`
- {ref}`sql-schema-table-management`
Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/redshift.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ Redshift. In addition to the {ref}`globally available
statements, the connector supports the following features:

- {doc}`/sql/insert`
- {doc}`/sql/update`
- {doc}`/sql/delete`
- {doc}`/sql/truncate`
- {ref}`sql-schema-table-management`
Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/singlestore.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,7 @@ a SingleStore database. In addition to the {ref}`globally available
statements, the connector supports the following features:

- {doc}`/sql/insert`
- {doc}`/sql/update`
- {doc}`/sql/delete`
- {doc}`/sql/truncate`
- {doc}`/sql/create-table`
Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/sqlserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ and {ref}`read operation <sql-read-operations>` statements, the connector
supports the following features:

- {doc}`/sql/insert`
- {doc}`/sql/update`
- {doc}`/sql/delete`
- {doc}`/sql/truncate`
- {ref}`sql-schema-table-management`
Expand Down
16 changes: 8 additions & 8 deletions docs/src/main/sphinx/release/release-427.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,42 +65,42 @@

## Ignite connector

* Add support for pushing down `UPDATE` statements to Ignite. ({issue}`16445`)
* Add support for `UPDATE`. ({issue}`16445`)

## MariaDB connector

* Add support for pushing down `UPDATE` statements to MariaDB. ({issue}`16445`)
* Add support for `UPDATE`. ({issue}`16445`)

## MongoDB connector

* Fix query failure when mapping MongoDB `Decimal128` values with leading zeros. ({issue}`19068`)

## MySQL connector

* Add support for pushing down `UPDATE` statements to MySQL. ({issue}`16445`)
* Add support for `UPDATE`. ({issue}`16445`)
* Change mapping for MySQL `TIMESTAMP` types from `timestamp(n)` to
`timestamp(n) with time zone`. ({issue}`18470`)

## Oracle connector

* Add support for pushing down `UPDATE` statements to Oracle. ({issue}`16445`)
* Add support for `UPDATE`. ({issue}`16445`)
* Fix potential query failure when joins are pushed down to Oracle. ({issue}`18924`)

## PostgreSQL connector

* Add support for pushing down `UPDATE` statements to PostgreSQL. ({issue}`16445`)
* Add support for `UPDATE`. ({issue}`16445`)

## Redshift connector

* Add support for pushing down `UPDATE` statements to Redshift. ({issue}`16445`)
* Add support for `UPDATE`. ({issue}`16445`)

## SingleStore connector

* Add support for pushing down `UPDATE` statements to SingleStore. ({issue}`16445`)
* Add support for `UPDATE`. ({issue}`16445`)

## SQL Server connector

* Add support for pushing down `UPDATE` statements to SQL Server. ({issue}`16445`)
* Add support for `UPDATE`. ({issue}`16445`)

## SPI

Expand Down

0 comments on commit 96653c5

Please sign in to comment.