Details
Description
Adding support for defining schema in foreign DDL commands. Now foreign DDL support commands like:
CREATE TEMPORARY TABLE avroTable
USING org.apache.spark.sql.avro
OPTIONS (path "../hive/src/test/resources/data/files/episodes.avro")
Let user can define schema instead of infer from file, so we can support ddl command as follows:
CREATE TEMPORARY TABLE avroTable(a int, b string) USING org.apache.spark.sql.avro OPTIONS (path "../hive/src/test/resources/data/files/episodes.avro")
Attachments
Issue Links
- links to