From 4faa1f02bfbd9d8f42f54a8d963e6821c4ab2318 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Wed, 27 Oct 2021 16:14:25 +0100 Subject: [PATCH] add comments --- db/proto/db.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/db/proto/db.proto b/db/proto/db.proto index 51d8cc0..ac485df 100644 --- a/db/proto/db.proto +++ b/db/proto/db.proto @@ -92,9 +92,11 @@ message TruncateResponse { // Count records in a table message CountRequest { + // specify the table name string table = 1; } message CountResponse { + // the number of records in the table int32 count = 1; -} \ No newline at end of file +}