Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/harshmotw-db/spark
Browse files Browse the repository at this point in the history
  • Loading branch information
harshmotw-db committed Apr 20, 2024
2 parents a3ceee9 + 731f6b5 commit ee98221
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion R/pkg/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Suggests:
testthat,
e1071,
survival,
arrow (>= 1.0.0)
arrow (>= 10.0.0)
Collate:
'schema.R'
'generics.R'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ private[spark] class DiskStore(
def moveFileToBlock(sourceFile: File, blockSize: Long, targetBlockId: BlockId): Unit = {
blockSizes.put(targetBlockId, blockSize)
val targetFile = diskManager.getFile(targetBlockId.name)
logDebug(s"${sourceFile.getPath()} -> ${targetFile.getPath()}")
FileUtils.moveFile(sourceFile, targetFile)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ import org.apache.spark.sql.execution.aggregate.BaseAggregateExec
import org.apache.spark.sql.internal.SQLConf
import org.apache.spark.sql.test.SharedSparkSession
import org.apache.spark.sql.types.LongType
import org.apache.spark.tags.ExtendedSQLTest

/**
* Query tests for the Bloom filter aggregate and filter function.
*/
@ExtendedSQLTest
class BloomFilterAggregateQuerySuite extends QueryTest with SharedSparkSession {
import testImplicits._

Expand Down

0 comments on commit ee98221

Please sign in to comment.