Skip to content

Commit 857c4c2

Browse files
committed
fix code exceed 100 characters
1 parent a2615b7 commit 857c4c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/catalog/SessionCatalogSuite.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1412,7 +1412,8 @@ abstract class SessionCatalogSuite extends PlanTest {
14121412
assert(!exists(db.locationUri, "my_table"))
14131413
assert(exists(db.locationUri, "your_table"))
14141414

1415-
catalog.externalCatalog.dropTable("db1", "your_table", ignoreIfNotExists = false, purge = false)
1415+
catalog.externalCatalog.dropTable(
1416+
"db1", "your_table", ignoreIfNotExists = false, purge = false)
14161417
assert(!exists(db.locationUri, "your_table"))
14171418

14181419
val externalTable = CatalogTable(

0 commit comments

Comments
 (0)