This is an automated email from the ASF dual-hosted git repository.

alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/master by this push:
     new 9c547a6a4 KUDU-2671 Fix typo in master-test.cc
9c547a6a4 is described below

commit 9c547a6a43335565b615bb91301ee03b9f555fdb
Author: Abhishek Chennaka <[email protected]>
AuthorDate: Wed Jul 13 13:39:24 2022 -0400

    KUDU-2671 Fix typo in master-test.cc
    
    This change fixes a type introduced in master-test.cc previously.
    This is a follow up to 250eb90bc0e1f4f472f44de8a23ce213595d5ee7.
    
    Change-Id: I9b6731128b063355c71b7de1d46d0f9d1335c141
    Reviewed-on: http://gerrit.cloudera.org:8080/18726
    Reviewed-by: Alexey Serbin <[email protected]>
    Reviewed-by: Mahesh Reddy <[email protected]>
    Tested-by: Alexey Serbin <[email protected]>
---
 src/kudu/master/master-test.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kudu/master/master-test.cc b/src/kudu/master/master-test.cc
index 7105b401d..5161eb349 100644
--- a/src/kudu/master/master-test.cc
+++ b/src/kudu/master/master-test.cc
@@ -285,7 +285,7 @@ Status MasterTest::CreateTable(
       hash_schema->add_columns()->set_name(col_name);
     }
     hash_schema->set_num_buckets(hash_dimension.num_buckets);
-    hash_schema->set_seed(hash_dimension.num_buckets);
+    hash_schema->set_seed(hash_dimension.seed);
   }
 
   for (const auto& range_and_hs : ranges_with_hash_schemas) {

Reply via email to