diff --git a/docs/source/user-guide/sql/write_options.md b/docs/source/user-guide/sql/write_options.md index 6fb4ef215ff1..521e29436212 100644 --- a/docs/source/user-guide/sql/write_options.md +++ b/docs/source/user-guide/sql/write_options.md @@ -38,11 +38,11 @@ CREATE EXTERNAL TABLE my_table(a bigint, b bigint) STORED AS csv COMPRESSION TYPE gzip - DELIMITER ';' LOCATION '/test/location/my_csv_table/' OPTIONS( NULL_VALUE 'NAN', - 'has_header' 'true' + 'has_header' 'true', + 'format.delimiter' ';' ) ```