docs: fix the case of the s3 examples for msq (#16969)

This commit is contained in:
317brian 2024-08-28 11:13:15 -07:00 committed by GitHub
parent fbd305af0f
commit 1d292c5a59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -130,13 +130,13 @@ FROM <table>
##### S3
Export results to S3 by passing the function `S3()` as an argument to the `EXTERN` function. Note that this requires the `druid-s3-extensions`.
The `S3()` function is a Druid function that configures the connection. Arguments for `S3()` should be passed as named parameters with the value in single quotes like the following example:
Export results to S3 by passing the function `s3()` as an argument to the `EXTERN` function. Note that this requires the `druid-s3-extensions`.
The `s3()` function is a Druid function that configures the connection. Arguments for `s3()` should be passed as named parameters with the value in single quotes like the following example:
```sql
INSERT INTO
EXTERN(
S3(bucket => 'your_bucket', prefix => 'prefix/to/files')
s3(bucket => 'your_bucket', prefix => 'prefix/to/files')
)
AS CSV
SELECT