This is an automated email from the ASF dual-hosted git repository.
tanxinyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 374deefeb86 Update ConfigPhysicalReadPlan.java (#13624)
374deefeb86 is described below
commit 374deefeb86793643f49a623fe9d6e05b4212bd7
Author: Caideyipi <[email protected]>
AuthorDate: Thu Sep 26 10:45:22 2024 +0800
Update ConfigPhysicalReadPlan.java (#13624)
---
.../confignode/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 b8652f03a1b..032c21a731c 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 @@ public abstract class ConfigPhysicalReadPlan extends
ConfigPhysicalPlan {
@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
}
}