You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, when trying to create a Qbeast Table without schema, the following exception is raised:
spark.sql("CREATE TABLE t USING qbeast LOCATION '/tmp/test'")
org.apache.spark.sql.AnalysisException:Trying to create an ExternalTable without any schema. Please specify the schema in the command or use a path of a populated table.
When executing the same code with Delta, it works creating a Delta Table with the following information:
spark.sql("CREATE TABLE t USING delta LOCATION '/tmp/test'")
We should allow the Qbeast Datasource to create a new table for a location, even if the schema is not specified. Once the first write is made, we should enforce the schema relying on Delta properties.
The text was updated successfully, but these errors were encountered:
Right now, when trying to create a Qbeast Table without schema, the following exception is raised:
When executing the same code with Delta, it works creating a Delta Table with the following information:
spark.sql("CREATE TABLE t USING delta LOCATION '/tmp/test'")
We should allow the Qbeast Datasource to create a new table for a location, even if the schema is not specified. Once the first write is made, we should enforce the schema relying on Delta properties.
The text was updated successfully, but these errors were encountered: