PragmaTwice commented on code in PR #3171:
URL: https://github.com/apache/kvrocks/pull/3171#discussion_r2340604734


##########
src/commands/cmd_timeseries.cc:
##########
@@ -978,6 +978,67 @@ class CommandTSMRange : public CommandTSRangeBase, public 
CommandTSMGetBase {
   TSMRangeOption option_;
 };
 
+class CommandTSIncrBy : public CommandTSCreateBase {
+ public:
+  CommandTSIncrBy() { registerDefaultHandlers(); }
+  Status Parse(const std::vector<std::string> &args) override {
+    if (args.size() < 3) {
+      return {Status::RedisParseErr, "wrong number of arguments for 
'ts.incrby' command"};
+    }

Review Comment:
   can be removed. it will be checked in other place.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to