We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fa51b5 commit 64a8f5aCopy full SHA for 64a8f5a
sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala
@@ -50,13 +50,7 @@ class InMemoryCatalogedDDLSuite extends DDLSuite with SharedSQLContext with Befo
50
catalog: SessionCatalog,
51
name: TableIdentifier): CatalogTable = {
52
val storage =
53
- CatalogStorageFormat(
54
- locationUri = Some(catalog.defaultTablePath(name)),
55
- inputFormat = None,
56
- outputFormat = None,
57
- serde = None,
58
- compressed = false,
59
- properties = Map())
+ CatalogStorageFormat.empty.copy(locationUri = Some(catalog.defaultTablePath(name)))
60
val metadata = new MetadataBuilder()
61
.putString("key", "value")
62
.build()
0 commit comments