Fix query example in fileCluster.md

This commit is contained in:
Igor Nikonov 2024-02-27 17:40:36 +01:00 committed by GitHub
parent f8ff15a023
commit 4e406c6d8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,9 +59,7 @@ INSERT INTO TABLE FUNCTION file('file2.csv', 'CSV', 'i UInt32, s String') VALUES
Now, read data contents of `test1.csv` and `test2.csv` via `fileCluster` table function:
```sql
SELECT * from fileCluster(
'my_cluster', 'file{1,2}.csv', 'CSV', 'i UInt32, s String') ORDER BY (i, s)"""
)
SELECT * from fileCluster('my_cluster', 'file{1,2}.csv', 'CSV', 'i UInt32, s String') ORDER BY (i, s)
```
```