You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by ad...@apache.org on 2018/10/30 21:00:40 UTC

[2/2] kudu git commit: mt-rowset_delta_compaction-test: remove dead code

mt-rowset_delta_compaction-test: remove dead code

This should have been removed in commit b6306163b.

Change-Id: I9ce38fc2555f05ab5401fc56d4c5dca20258d436
Reviewed-on: http://gerrit.cloudera.org:8080/11824
Tested-by: Adar Dembo <ad...@cloudera.com>
Reviewed-by: Adar Dembo <ad...@cloudera.com>


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

Branch: refs/heads/master
Commit: a2decad12bf84c91caf26d1963b99b3067dbd132
Parents: b022887
Author: Adar Dembo <ad...@cloudera.com>
Authored: Fri Oct 5 16:25:19 2018 -0700
Committer: Adar Dembo <ad...@cloudera.com>
Committed: Tue Oct 30 21:00:21 2018 +0000

----------------------------------------------------------------------
 src/kudu/tablet/mt-rowset_delta_compaction-test.cc | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/a2decad1/src/kudu/tablet/mt-rowset_delta_compaction-test.cc
----------------------------------------------------------------------
diff --git a/src/kudu/tablet/mt-rowset_delta_compaction-test.cc b/src/kudu/tablet/mt-rowset_delta_compaction-test.cc
index 28e827e..a9ff5f9 100644
--- a/src/kudu/tablet/mt-rowset_delta_compaction-test.cc
+++ b/src/kudu/tablet/mt-rowset_delta_compaction-test.cc
@@ -157,9 +157,6 @@ class TestMultiThreadedRowSetDeltaCompaction : public TestRowSet {
     for (const auto& thread : compaction_threads_) {
       ASSERT_OK(ThreadJoiner(thread.get()).Join());
     }
-    for (const auto& thread : alter_schema_threads_) {
-      ASSERT_OK(ThreadJoiner(thread.get()).Join());
-    }
   }
 
   void WriteTestRowSetWithZeros() {
@@ -197,7 +194,6 @@ class TestMultiThreadedRowSetDeltaCompaction : public TestRowSet {
   vector<scoped_refptr<kudu::Thread> > update_threads_;
   vector<scoped_refptr<kudu::Thread> > flush_threads_;
   vector<scoped_refptr<kudu::Thread> > compaction_threads_;
-  vector<scoped_refptr<kudu::Thread> > alter_schema_threads_;
 };
 
 static void SetupFlagsForSlowTests() {