rdblue commented on issue #28026: [SPARK-31257][SQL] Unify create table syntax (WIP) URL: https://github.com/apache/spark/pull/28026#issuecomment-606775156 Hive syntax was considered. Anything specific to a source will be passed as table properties. In this PR, these are passed as follows: * `STORED AS formatName` -> `hive.stored-as=formatName` * `INPUTFORMAT formatClass` -> `hive.input-format=formatClass` * `OUTPUTFORMAT formatClass` -> `hive.output-format=formatClass` * `SERDE serdeClass` -> `hive.serde=serdeClass` * `SERDEPROPERTIES ('key'='value')` -> `option.key=value` Again, the only thing that Spark should be doing here is ensuring the data is well-formed and then passing it directly to the source.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
