Skip to content

Commit 2036f37

Browse files
authored
Fix syntax error in DDL documentation example (#17412)
1 parent a68563b commit 2036f37

File tree

1 file changed

+1
-1
lines changed
  • docs/source/user-guide/sql

1 file changed

+1
-1
lines changed

docs/source/user-guide/sql/ddl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ CREATE EXTERNAL TABLE test (
207207
c13 VARCHAR NOT NULL
208208
)
209209
STORED AS CSV
210-
WITH ORDER (c2 ASC, c5 + c8 DESC NULL FIRST)
210+
WITH ORDER (c2 ASC, c5 + c8 DESC NULLS FIRST)
211211
LOCATION '/path/to/aggregate_test_100.csv'
212212
OPTIONS ('has_header' 'true');
213213
```

0 commit comments

Comments
 (0)