Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add comment
  • Loading branch information
Emil Ejbyfeldt committed Oct 2, 2023
commit e228dfdedd517da3311ff2a92b9026c6d78c428b
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ class CacheManager extends Logging with AdaptiveSparkPlanHelper {
tableName: Option[String],
storageLevel: StorageLevel): Unit = {
if (storageLevel == StorageLevel.NONE) {
// Do nothing for StorageLevel.NONE since it will not actually cache any data.
} else if (lookupCachedData(planToCache).nonEmpty) {
logWarning("Asked to cache already cached data.")
} else {
Expand Down