-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert more connector docs to markdown
- All JBDC based connectors - Kafka and related connectors with some layout improvements - Blackhole connector - All used fragments
- Loading branch information
Showing
63 changed files
with
8,739 additions
and
9,005 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
7 changes: 3 additions & 4 deletions
7
docs/src/main/sphinx/connector/alter-schema-limitation.fragment
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,5 +1,4 @@ | ||
ALTER SCHEMA | ||
^^^^^^^^^^^^ | ||
### ALTER SCHEMA | ||
|
||
The connector supports renaming a schema with the ``ALTER SCHEMA RENAME`` | ||
statement. ``ALTER SCHEMA SET AUTHORIZATION`` is not supported. | ||
The connector supports renaming a schema with the `ALTER SCHEMA RENAME` | ||
statement. `ALTER SCHEMA SET AUTHORIZATION` is not supported. |
15 changes: 7 additions & 8 deletions
15
docs/src/main/sphinx/connector/alter-table-limitation.fragment
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,16 +1,15 @@ | ||
ALTER TABLE RENAME TO | ||
^^^^^^^^^^^^^^^^^^^^^ | ||
### ALTER TABLE RENAME TO | ||
|
||
The connector does not support renaming tables across multiple schemas. For | ||
example, the following statement is supported: | ||
|
||
.. code-block:: sql | ||
|
||
ALTER TABLE example.schema_one.table_one RENAME TO example.schema_one.table_two | ||
```sql | ||
ALTER TABLE example.schema_one.table_one RENAME TO example.schema_one.table_two | ||
``` | ||
|
||
The following statement attempts to rename a table across schemas, and therefore | ||
is not supported: | ||
|
||
.. code-block:: sql | ||
|
||
ALTER TABLE example.schema_one.table_one RENAME TO example.schema_two.table_two | ||
```sql | ||
ALTER TABLE example.schema_one.table_one RENAME TO example.schema_two.table_two | ||
``` |
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.