mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Apply suggestions from code review
This commit is contained in:
parent
21573028ea
commit
6e9669cfae
@ -13,7 +13,7 @@ Note that the Delta Lake table must already exist in S3, this command does not t
|
||||
|
||||
``` sql
|
||||
CREATE TABLE deltalake
|
||||
ENGINE = DeltaLake(path, [aws_access_key_id, aws_secret_access_key,])
|
||||
ENGINE = DeltaLake(url, [aws_access_key_id, aws_secret_access_key,])
|
||||
```
|
||||
|
||||
**Engine parameters**
|
||||
|
@ -10,12 +10,12 @@ Provides a read-only table-like interface to [Delta Lake](https://github.com/del
|
||||
## Syntax
|
||||
|
||||
``` sql
|
||||
deltaLake(path [,aws_access_key_id, aws_secret_access_key] [,format] [,structure] [,compression])
|
||||
deltaLake(url [,aws_access_key_id, aws_secret_access_key] [,format] [,structure] [,compression])
|
||||
```
|
||||
|
||||
## Arguments
|
||||
|
||||
- `path` — Bucket url with path to existing Delta Lake table in S3.
|
||||
- `url` — Bucket url with path to existing Delta Lake table in S3.
|
||||
- `aws_access_key_id`, `aws_secret_access_key` - Long-term credentials for the [AWS](https://aws.amazon.com/) account user. You can use these to authenticate your requests. These parameters are optional. If credentials are not specified, they are used from the ClickHouse configuration. For more information see [Using S3 for Data Storage](/docs/en/engines/table-engines/mergetree-family/mergetree.md/#table_engine-mergetree-s3).
|
||||
- `format` — The [format](/docs/en/interfaces/formats.md/#formats) of the file.
|
||||
- `structure` — Structure of the table. Format `'column1_name column1_type, column2_name column2_type, ...'`.
|
||||
|
Loading…
Reference in New Issue
Block a user