From a6943cd1923853222c1eae6c4dae37b149b22173 Mon Sep 17 00:00:00 2001 From: Syeerzy Date: Thu, 11 Oct 2018 17:02:44 +0800 Subject: [PATCH] Update ins_node.proto change message ScanRequest's end_key field's type from bytes to string (to be the same with as the start_key field) --- src/proto/ins_node.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto/ins_node.proto b/src/proto/ins_node.proto index 5dcf982..a80d60c 100644 --- a/src/proto/ins_node.proto +++ b/src/proto/ins_node.proto @@ -151,7 +151,7 @@ message ShowStatusResponse { message ScanRequest { required string start_key = 1; - required bytes end_key = 2; + required string end_key = 2; required int32 size_limit = 3; optional string uuid = 4; }