Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
comphead committed Sep 18, 2023
1 parent 15d0e44 commit 4369005
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/source/user-guide/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,20 +146,23 @@ via `CREATE EXTERNAL TABLE` as shown below. Filemask wildcards supported
Parquet data sources can be registered by executing a `CREATE EXTERNAL TABLE` SQL statement. The schema information will be derived automatically.
Register a single file parquet datasource
```sql
CREATE EXTERNAL TABLE taxi
STORED AS PARQUET
LOCATION '/mnt/nyctaxi/tripdata.parquet';
```
Register a single folder parquet datasource. All files inside must be valid parquet files!
```sql
CREATE EXTERNAL TABLE taxi
STORED AS PARQUET
LOCATION '/mnt/nyctaxi/';
```
Register a single folder parquet datasource by specifying a wildcard for files to read
```sql
CREATE EXTERNAL TABLE taxi
STORED AS PARQUET
Expand Down

0 comments on commit 4369005

Please sign in to comment.