Skip to content

Commit

Permalink
docs: fix the case of the s3 examples for msq (apache#16969)
Browse files Browse the repository at this point in the history
  • Loading branch information
317brian authored and edgar2020 committed Sep 5, 2024
1 parent ba1294d commit dc9faf9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/multi-stage-query/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dc9faf9

Please sign in to comment.