Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
JkSelf committed Dec 8, 2023
1 parent 17bf20c commit 91e1e8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 91e1e8f

Please sign in to comment.