Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
zhztheplayer committed Nov 22, 2024
1 parent d9f31ff commit 5d2b0e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ abstract class AbstractFileSourceScanExec(
disableBucketedScan: Boolean = false)
extends DataSourceScanExec {

override val supportsColumnar: Boolean = {
override def supportsColumnar: Boolean = {
// The value should be defined in GlutenPlan.
throw new UnsupportedOperationException("Unreachable code")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ abstract class AbstractFileSourceScanExec(
lazy val metadataColumns: Seq[AttributeReference] =
output.collect { case FileSourceMetadataAttribute(attr) => attr }

override val supportsColumnar: Boolean = {
override def supportsColumnar: Boolean = {
// The value should be defined in GlutenPlan.
throw new UnsupportedOperationException("Unreachable code")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ abstract class AbstractFileSourceScanExec(
override val disableBucketedScan: Boolean = false)
extends FileSourceScanLike {

override val supportsColumnar: Boolean = {
override def supportsColumnar: Boolean = {
// The value should be defined in GlutenPlan.
throw new UnsupportedOperationException("Unreachable code")
}
Expand Down

0 comments on commit 5d2b0e1

Please sign in to comment.