Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SQL support docs for Blackhole #18534

Merged
merged 1 commit into from
Aug 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions docs/src/main/sphinx/connector/blackhole.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ In such cases, writes behave in the same way, but reads
always return the specified number of some constant rows.
You shouldn't rely on the content of such rows.

:::{warning}
mosabua marked this conversation as resolved.
Show resolved Hide resolved
This connector does not work properly with multiple coordinators,
since each coordinator has different metadata.
:::

## Configuration

Create `etc/catalog/example.properties` to mount the `blackhole` connector
Expand Down Expand Up @@ -121,12 +116,19 @@ additional features:
- {doc}`/sql/merge`
- {doc}`/sql/create-table`
- {doc}`/sql/create-table-as`
- {doc}`/sql/show-create-table`
- {doc}`/sql/drop-table`
- {doc}`/sql/create-schema`
- {doc}`/sql/drop-schema`
- {doc}`/sql/create-view`
mosabua marked this conversation as resolved.
Show resolved Hide resolved
- {doc}`/sql/show-create-view`
- {doc}`/sql/drop-view`
- {doc}`/sql/create-materialized-view`
- {doc}`/sql/show-create-materialized-view`
- {doc}`/sql/drop-materialized-view`
mosabua marked this conversation as resolved.
Show resolved Hide resolved

:::{note}
The connector discards all written data. While read operations are supported,
they will return rows with all NULL values, with the number of rows controlled
they return rows with all NULL values, with the number of rows controlled
via table properties.
:::