From 20215b1a526b034d7fe45b26c4b166a118c13d64 Mon Sep 17 00:00:00 2001 From: Devin D'Angelo Date: Sun, 10 Sep 2023 20:37:52 -0400 Subject: [PATCH] edit SINGLE_FILE_OUPUT description --- docs/source/user-guide/sql/write_options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/user-guide/sql/write_options.md b/docs/source/user-guide/sql/write_options.md index 67a0679b7fd9..ed996bcdead7 100644 --- a/docs/source/user-guide/sql/write_options.md +++ b/docs/source/user-guide/sql/write_options.md @@ -71,7 +71,7 @@ The following special options are specific to the `COPY` query. | Option | Description | Default Value | | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- | -| SINGLE_FILE_OUTPUT | If true, COPY query will write output to a single file. | true | +| SINGLE_FILE_OUTPUT | If true, COPY query will write output to a single file. Otherwise, multiple files will be written to a directory in parallel. | true | | FORMAT | Specifies the file format COPY query will write out. If single_file_output is false or format cannot be inferred from file extension, then FORMAT must be specified. | N/A | ### CREATE EXTERNAL TABLE Specific Options