From 374deefeb86793643f49a623fe9d6e05b4212bd7 Mon Sep 17 00:00:00 2001 From: Caideyipi <87789683+Caideyipi@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:45:22 +0800 Subject: [PATCH] Update ConfigPhysicalReadPlan.java (#13624) --- .../consensus/request/read/ConfigPhysicalReadPlan.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/read/ConfigPhysicalReadPlan.java b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/read/ConfigPhysicalReadPlan.java index b8652f03a1b5..032c21a731c0 100644 --- a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/read/ConfigPhysicalReadPlan.java +++ b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/read/ConfigPhysicalReadPlan.java @@ -34,11 +34,11 @@ protected ConfigPhysicalReadPlan(final ConfigPhysicalPlanType type) { @Override protected void serializeImpl(final DataOutputStream stream) throws IOException { - throw new UnsupportedOperationException("Read request does not need to be serialized."); + // Read request does not need to be serialized } @Override protected void deserializeImpl(final ByteBuffer buffer) throws IOException { - throw new UnsupportedOperationException("Read request does not need to be deserialized."); + // Read request does not need to be deserialized } }