This is an automated email from the ASF dual-hosted git repository.
tanxinyu pushed a commit to branch rc/1.3.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/rc/1.3.3 by this push:
new 4cc794cd2af [To rc/1.3.3] Tolerate ser/de call for
configPhysicalReadPlan #13628
4cc794cd2af is described below
commit 4cc794cd2afbcc63302810999a0dcc7d4743dd41
Author: Caideyipi <[email protected]>
AuthorDate: Thu Sep 26 15:46:32 2024 +0800
[To rc/1.3.3] Tolerate ser/de call for configPhysicalReadPlan #13628
---
.../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
}
}