This is an automated email from the ASF dual-hosted git repository.
brile pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new 1d292c5a59c docs: fix the case of the s3 examples for msq (#16969)
1d292c5a59c is described below
commit 1d292c5a59cf023acdab13515fd783c44b7ffd51
Author: 317brian <[email protected]>
AuthorDate: Wed Aug 28 11:13:15 2024 -0700
docs: fix the case of the s3 examples for msq (#16969)
---
docs/multi-stage-query/reference.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/multi-stage-query/reference.md
b/docs/multi-stage-query/reference.md
index c4345fedf81..50f07ff80b4 100644
--- a/docs/multi-stage-query/reference.md
+++ b/docs/multi-stage-query/reference.md
@@ -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
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]