You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@kudu.apache.org by "Alexey Serbin (Code Review)" <ge...@cloudera.org> on 2022/08/11 22:20:15 UTC

[kudu-CR] KUDU-3306: fix PartitionSchema::DecodeRangeKey

Alexey Serbin has posted comments on this change. ( http://gerrit.cloudera.org:8080/18733 )

Change subject: KUDU-3306: fix PartitionSchema::DecodeRangeKey
......................................................................


Patch Set 3: Code-Review+2

(6 comments)

Thank you for the fix!

Overall looks good to me, just a few nits.

http://gerrit.cloudera.org:8080/#/c/18733/3//COMMIT_MSG
Commit Message:

http://gerrit.cloudera.org:8080/#/c/18733/3//COMMIT_MSG@10
PS3, Line 10: leads
nit: lead


http://gerrit.cloudera.org:8080/#/c/18733/3//COMMIT_MSG@11
PS3, Line 11: string
nit: string, binary, and varchar


http://gerrit.cloudera.org:8080/#/c/18733/3/src/kudu/tools/kudu-tool-test.cc
File src/kudu/tools/kudu-tool-test.cc:

http://gerrit.cloudera.org:8080/#/c/18733/3/src/kudu/tools/kudu-tool-test.cc@815
PS3, Line 815: it's
nit: its


http://gerrit.cloudera.org:8080/#/c/18733/3/src/kudu/tools/kudu-tool-test.cc@1086
PS3, Line 1086: fisrt_lower_bound
nit: first_lower_bound


http://gerrit.cloudera.org:8080/#/c/18733/3/src/kudu/tools/kudu-tool-test.cc@1087
PS3, Line 1087: fisrt_upper_bound
nit: first_upper_bound


http://gerrit.cloudera.org:8080/#/c/18733/3/src/kudu/tools/kudu-tool-test.cc@1097
PS3, Line 1097:     RETURN_NOT_OK(
              :         table_creator->table_name(kTableName)
              :             .schema(schema)
              :             .set_range_partition_columns({"string_key"})
              :             .add_range_partition(
              :                 fisrt_lower_bound.release(), fisrt_upper_bound.release(), bound_type, bound_type)
              :             .add_range_partition(
              :                 second_lower_bound.release(), second_upper_bound.release(), bound_type, bound_type)
              :             .num_replicas(1)
              :             .Create());
              :     return Status::OK();
nit: could be just

  return table_creator()->table_name(...)...;



-- 
To view, visit http://gerrit.cloudera.org:8080/18733
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: kudu
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I5abf7ff9713ee391199c47710ccd81db8b97653e
Gerrit-Change-Number: 18733
Gerrit-PatchSet: 3
Gerrit-Owner: Yifan Zhang <ch...@163.com>
Gerrit-Reviewer: Alexey Serbin <al...@apache.org>
Gerrit-Reviewer: Kudu Jenkins (120)
Gerrit-Reviewer: Mahesh Reddy <mr...@cloudera.com>
Gerrit-Reviewer: Yifan Zhang <ch...@163.com>
Gerrit-Comment-Date: Thu, 11 Aug 2022 22:20:15 +0000
Gerrit-HasComments: Yes