Skip to content

Commit

Permalink
Remove zstream command
Browse files Browse the repository at this point in the history
  • Loading branch information
akrambek committed Jan 23, 2025
1 parent e8fdf42 commit 500477c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public enum RisingwaveCommandType
DROP_ZVIEW_COMMAND("DROP ZVIEW".getBytes()),
DROP_ZFUNCTION_COMMAND("DROP ZFUNCTION".getBytes()),
SHOW_ZTABLES_COMMAND("SHOW ZTABLES".getBytes()),
SHOW_ZSTREAMS_COMMAND("SHOW ZSTREAMS".getBytes()),
SHOW_ZVIEWS_COMMAND("SHOW ZVIEWS".getBytes()),
SHOW_ZFUNCTIONS_COMMAND("SHOW ZFUNCTIONS".getBytes()),
UNKNOWN_COMMAND("UNKNOWN".getBytes());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ public final class RisingwaveProxyFactory implements RisingwaveStreamFactory
clientTransforms.put(RisingwaveCommandType.DROP_ZTABLE_COMMAND, this::decodeDropZtableCommand);
clientTransforms.put(RisingwaveCommandType.DROP_ZVIEW_COMMAND, this::decodeDropZviewCommand);
clientTransforms.put(RisingwaveCommandType.DROP_ZFUNCTION_COMMAND, this::decodeDropZfunctionCommand);
clientTransforms.put(RisingwaveCommandType.SHOW_ZSTREAMS_COMMAND, this::decodeShowCommand);
clientTransforms.put(RisingwaveCommandType.SHOW_ZTABLES_COMMAND, this::decodeShowCommand);
clientTransforms.put(RisingwaveCommandType.SHOW_ZVIEWS_COMMAND, this::decodeShowCommand);
clientTransforms.put(RisingwaveCommandType.SHOW_ZFUNCTIONS_COMMAND, this::decodeShowZfunctionCommand);
Expand Down

0 comments on commit 500477c

Please sign in to comment.