Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions docs/src/main/sphinx/connector/bigquery.md
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,17 @@ the following features:
```{include} sql-delete-limitation.fragment
```

### Wildcard table

The connector provides support to query multiple tables using a concise
[wildcard table](https://cloud.google.com/bigquery/docs/querying-wildcard-tables)
notation.

```sql
SELECT *
FROM example.web."page_views_*";
```

### Procedures

```{include} procedures-execute.fragment
Expand Down
11 changes: 11 additions & 0 deletions docs/src/main/sphinx/connector/elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,17 @@ The connector provides [globally available](sql-globally-available) and [read
operation](sql-read-operations) statements to access data and metadata in the
Elasticsearch catalog.

### Wildcard table

The connector provides support to query multiple tables using a concise
[wildcard table](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multiple-indices.html)
notation.

```sql
SELECT *
FROM example.web."page_views_*";
```

### Table functions

The connector provides specific {doc}`table functions </functions/table>` to
Expand Down
11 changes: 11 additions & 0 deletions docs/src/main/sphinx/connector/opensearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,17 @@ The connector provides [globally available](sql-globally-available) and
[read operation](sql-read-operations) statements to access data and
metadata in the OpenSearch catalog.

### Wildcard table

The connector provides support to query multiple tables using a concise
[wildcard table](https://opensearch.org/docs/latest/api-reference/multi-search/#metadata-only-options)
notation.

```sql
SELECT *
FROM example.web."page_views_*";
```

### Table functions

The connector provides specific [table functions](/functions/table) to
Expand Down