kumarUjjawal commented on code in PR #22695: URL: https://github.com/apache/datafusion/pull/22695#discussion_r3600522411
########## docs/source/user-guide/sql/ddl.md: ########## @@ -82,6 +82,22 @@ For a comprehensive list of format-specific options that can be specified in the a path to a file or directory of partitioned files locally or on an object store. +Multiple locations can be supplied as a parenthesized list of string literals, +in which case the files are read together as one table: + +```sql +CREATE EXTERNAL TABLE hits +STORED AS PARQUET +LOCATION ( + 's3://clickhouse-public-datasets/hits_compatible/athena_partitioned/hits_1.parquet', + 's3://clickhouse-public-datasets/hits_compatible/athena_partitioned/hits_2.parquet' +); +``` + +All listed locations must reside on the same object store and resolve to data +with the same schema. Paths that themselves contain a literal comma can still Review Comment: Agree! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
