Skip to content

Commit

Permalink
Update SQL support docs for Blackhole
Browse files Browse the repository at this point in the history
- For views
- For materialized views
- For tables
- Also remove invalid warning
  • Loading branch information
mosabua committed Aug 7, 2023
1 parent fa23a09 commit 8174f22
Showing 1 changed file with 8 additions and 6 deletions.
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}
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`
- {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`

:::{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.
:::

0 comments on commit 8174f22

Please sign in to comment.