Skip to content

Commit fd9480c

Browse files
committed
revert unnecessary changes
1 parent 631e75b commit fd9480c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/analysis/DecimalPrecisionSuite.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import org.apache.spark.sql.catalyst.plans.logical.{LocalRelation, Project, Unio
2828
import org.apache.spark.sql.internal.SQLConf
2929
import org.apache.spark.sql.types._
3030

31+
3132
class DecimalPrecisionSuite extends AnalysisTest with BeforeAndAfter {
3233
private val catalog = new SessionCatalog(new InMemoryCatalog, EmptyFunctionRegistry)
3334
private val analyzer = new Analyzer(catalog)

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ abstract class SessionCatalogSuite extends AnalysisTest with Eventually {
8686
}
8787

8888
private def getTempViewRawPlan(plan: Option[LogicalPlan]): Option[LogicalPlan] = plan match {
89-
case Some(v: View) if v.isTempViewStoringAnalyzedPlan =>
90-
Some(v.child)
89+
case Some(v: View) if v.isTempViewStoringAnalyzedPlan => Some(v.child)
9190
case other => other
9291
}
9392

0 commit comments

Comments
 (0)