Skip to content

Commit

Permalink
Fix HookCallingExternalCatalog.dropPartitions
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?
`HookCallingExternalCatalog.dropPartitions` was accidentally broken during the last merge with Apache Spark. This fixes the build.

## How was this patch tested?
Existing tests.

Author: Herman van Hovell <hvanhovell@databricks.com>

Closes apache#134 from hvanhovell/HotFix-HookCallingExternalCatalog.
  • Loading branch information
hvanhovell authored and yhuai committed Dec 3, 2016
1 parent 91e6ea5 commit 3c05dc9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,9 @@ class HookCallingExternalCatalog(val delegate: ExternalCatalog, val hooks: Catal
table: String,
parts: Seq[TablePartitionSpec],
ignoreIfNotExists: Boolean,
purge: Boolean): Unit = {
delegate.dropPartitions(db, table, parts, ignoreIfNotExists, purge)
purge: Boolean,
retainData: Boolean): Unit = {
delegate.dropPartitions(db, table, parts, ignoreIfNotExists, purge, retainData)
}

override def renamePartitions(
Expand Down

0 comments on commit 3c05dc9

Please sign in to comment.