alamb commented on issue #9465: URL: https://github.com/apache/arrow-datafusion/issues/9465#issuecomment-1986810399
If we can keep both the current behavior as well I think this is a good idea (aka if this is backwards compatible) So specifically, if both the following SQL statements result in the same table schema (`trace_id varchar`, `partition varchar`) ```sql CREATE EXTERNAL TABLE test(partition varchar, trace_id varchar) STORED AS parquet PARTITIONED BY (partition) -- no type specified here LOCATION '/tmp/test/'; ``` ```sql CREATE EXTERNAL TABLE test(trace_id varchar) STORED AS parquet PARTITIONED BY (partition varchar) LOCATION '/tmp/test/'; ``` -- 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]
