alamb commented on issue #13785:
URL: https://github.com/apache/datafusion/issues/13785#issuecomment-2546173231

   > Is there no way we can default order by certain fields? I know clickhouse 
uses this to skip lots of unnecessary processing. Can we do the same?
   
   You can use the `WITH ORDER` clause of the `CREATE EXTERNAL TABLE` if your 
data is already ordered
   
   https://datafusion.apache.org/user-guide/sql/ddl.html#create-external-table
   
   For example
   
   ```sql
   CREATE EXTERNAL TABLE test (
       c1  VARCHAR NOT NULL,
       c2  INT NOT NULL,
       c3  SMALLINT NOT NULL,
       c4  SMALLINT NOT NULL,
       c5  INT NOT NULL,
       c6  BIGINT NOT NULL,
       c7  SMALLINT NOT NULL,
       c8  INT NOT NULL,
       c9  BIGINT NOT NULL,
       c10 VARCHAR NOT NULL,
       c11 FLOAT NOT NULL,
       c12 DOUBLE NOT NULL,
       c13 VARCHAR NOT NULL
   )
   STORED AS CSV
   WITH ORDER (c2 ASC, c5 + c8 DESC NULL FIRST)
   LOCATION '/path/to/aggregate_test_100.csv'
   OPTIONS ('has_header' 'true');
   ```
   


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to