Apply suggestions from code review

This commit is contained in:
Dan Roscigno 2023-01-11 07:53:37 -05:00 committed by GitHub
parent 21573028ea
commit 6e9669cfae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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**

View File

@ -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, ...'`.