You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ch...@apache.org on 2017/11/29 14:19:23 UTC

carbondata git commit: [HOTFIX] correct event name

Repository: carbondata
Updated Branches:
  refs/heads/master 684447383 -> 5f0f66f32


[HOTFIX] correct event name

[HOTFIX] correct event name

This closes #1592


Project: http://git-wip-us.apache.org/repos/asf/carbondata/repo
Commit: http://git-wip-us.apache.org/repos/asf/carbondata/commit/5f0f66f3
Tree: http://git-wip-us.apache.org/repos/asf/carbondata/tree/5f0f66f3
Diff: http://git-wip-us.apache.org/repos/asf/carbondata/diff/5f0f66f3

Branch: refs/heads/master
Commit: 5f0f66f32171385dc3144d7009ea3b9b8fdc5570
Parents: 6844473
Author: Jacky Li <ja...@qq.com>
Authored: Wed Nov 29 20:09:17 2017 +0800
Committer: chenliang613 <ch...@huawei.com>
Committed: Wed Nov 29 22:19:00 2017 +0800

----------------------------------------------------------------------
 .../execution/command/management/CarbonCleanFilesCommand.scala  | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/carbondata/blob/5f0f66f3/integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala
----------------------------------------------------------------------
diff --git a/integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala b/integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala
index 1bb9cfc..0011395 100644
--- a/integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala
+++ b/integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala
@@ -58,9 +58,8 @@ case class CarbonCleanFilesCommand(
       cleanGarbageDataInAllTables(sparkSession)
     }
     val cleanFilesPostEvent: CleanFilesPostEvent =
-      CleanFilesPostEvent(carbonTable,
-        sparkSession)
-    OperationListenerBus.getInstance.fireEvent(cleanFilesPreEvent)
+      CleanFilesPostEvent(carbonTable, sparkSession)
+    OperationListenerBus.getInstance.fireEvent(cleanFilesPostEvent)
     Seq.empty
   }