### Describe the bug On running the query below on the Clickbench multi file dataset, ```sql SELECT "SearchPhrase" FROM hits WHERE "SearchPhrase" <> '' ORDER BY to_timestamp_seconds("EventTime"), "SearchPhrase" LIMIT 10; ``` we get this error, ```bash Arrow error: Invalid argument error: The data type type Binary has no natural order ``` ### To Reproduce Download the data using, ```bash ./benchmarks/bench.sh data clickbench_partitioned ``` A `hits_multi` directory with the parquet files will be created. Execute the above queries, ```bash datafusion-cli -c "CREATE EXTERNAL TABLE hits STORED AS PARQUET LOCATION 'hits_multi';" "{query}" ``` ### Expected behavior The queries should run successfully without erroring. ### Additional context Datafusion 29.0.0