diff --git a/gluten-core/src/main/scala/io/glutenproject/expression/ConverterUtils.scala b/gluten-core/src/main/scala/io/glutenproject/expression/ConverterUtils.scala index 02f9f8892acb4..333c8948941e3 100644 --- a/gluten-core/src/main/scala/io/glutenproject/expression/ConverterUtils.scala +++ b/gluten-core/src/main/scala/io/glutenproject/expression/ConverterUtils.scala @@ -122,7 +122,9 @@ object ConverterUtils extends Logging { // TODO: This is used only by `BasicScanExecTransformer`, // perhaps we can remove this in the future and use `withExprId` version consistently. - def collectAttributeNamesWithoutExprId(attributes: Seq[Attribute], ignoreCaseSensitive: Boolean = false): JList[String] = { + def collectAttributeNamesWithoutExprId( + attributes: Seq[Attribute], + ignoreCaseSensitive: Boolean = false): JList[String] = { collectAttributeNamesDFS(attributes)(genColumnNameWithoutExprId(_, ignoreCaseSensitive)) } diff --git a/gluten-ut/spark34/src/test/scala/io/glutenproject/utils/velox/VeloxTestSettings.scala b/gluten-ut/spark34/src/test/scala/io/glutenproject/utils/velox/VeloxTestSettings.scala index aa7bbe93d4321..798d7a4bc4081 100644 --- a/gluten-ut/spark34/src/test/scala/io/glutenproject/utils/velox/VeloxTestSettings.scala +++ b/gluten-ut/spark34/src/test/scala/io/glutenproject/utils/velox/VeloxTestSettings.scala @@ -801,9 +801,8 @@ class VeloxTestSettings extends BackendTestSettings { // The timestamp value is not same with vanilla spark using velox Parquet write. // velox: 2023-12-08T15:46:54.801 // spark: 2023-12-08 07:46:54.801 - .exclude ("metadata struct (json): write _metadata in parquet and read back") - .exclude ("metadata struct (parquet): write _metadata in parquet and read back") - + .exclude("metadata struct (json): write _metadata in parquet and read back") + .exclude("metadata struct (parquet): write _metadata in parquet and read back") .exclude("SPARK-41896: Filter on row_index and a stored column at the same time") .exclude("SPARK-43450: Filter on aliased _metadata.row_index") enableSuite[GlutenParquetV1AggregatePushDownSuite]