This is an automated email from the ASF dual-hosted git repository.
lta pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.
from 6e4bc04 Merge pull request #118 from apache/fix_sync_thread_bug
add 1f626c4 add metadata plan codec
add 6e2dcea add author and loaddata plan codec
add 20d5513 add property plan codec
add e0f265b add physical codec unit test
new 30c89ff Merge pull request #115 from apache/serialize-physicalplan
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../iotdb/db/qp/logical/sys/AuthorOperator.java | 95 ++++-
.../iotdb/db/qp/logical/sys/MetadataOperator.java | 39 +-
.../iotdb/db/qp/logical/sys/PropertyOperator.java | 47 +-
.../iotdb/db/qp/physical/sys/AuthorPlan.java | 30 ++
.../iotdb/db/qp/physical/sys/LoadDataPlan.java | 19 +
.../iotdb/db/qp/physical/sys/MetadataPlan.java | 26 ++
.../iotdb/db/qp/physical/sys/PropertyPlan.java | 20 +
.../apache/iotdb/db/writelog/transfer/Codec.java | 1 +
.../iotdb/db/writelog/transfer/CodecInstances.java | 471 +++++++++++++++++++++
.../db/writelog/transfer/PhysicalPlanCodec.java | 186 +-------
.../writelog/transfer/PhysicalPlanLogTransfer.java | 32 +-
.../db/writelog/transfer/SystemLogOperator.java | 8 +-
.../transfer/PhysicalPlanLogTransferTest.java | 157 +++++++
13 files changed, 944 insertions(+), 187 deletions(-)
create mode 100644
iotdb/src/main/java/org/apache/iotdb/db/writelog/transfer/CodecInstances.java
create mode 100644
iotdb/src/test/java/org/apache/iotdb/db/writelog/transfer/PhysicalPlanLogTransferTest.java