This is an automated email from the ASF dual-hosted git repository.
xingtanzjr pushed a change to branch DebugLog
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from b3d09be87c Change log level
add 27c0d99eb2 Bump jetty.version from 9.4.48.v20220622 to
9.4.49.v20220914 (#7837)
add 3ee59e33cb Bump reactor-netty-http from 1.0.4 to 1.0.24 (#7838)
add 426d9344a1 remove (#7856)
add 4efeabeb21 [IOTDB-4791] Optimize the endFile in `TsFileIOWriter`
(#7826)
add 3904afce17 [IOTDB-4822]Migrate Query tests to the new IT framework
add 933d51bf04 Fix conflicts in path constructor (#7859)
add 7cf416f827 Merge branch 'master' into DebugLog
No new revisions were added by this update.
Summary of changes:
.../tests/tools/tsfile/ExportTsFileTestIT.java | 6 +-
.../java/org/apache/iotdb/tsfile/TsFileRead.java | 11 +-
.../iotdb/hadoop/tsfile/TSFRecordReader.java | 2 +-
.../org/apache/iotdb/db/it/IOTDBLoadTsFileIT.java | 3 +-
.../iotdb/db/it/query}/IoTDBArithmeticIT.java | 151 ++---
.../iotdb/db/it/query}/IoTDBFuzzyQueryIT.java | 159 +++---
.../org/apache/iotdb/db/it/query}/IoTDBInIT.java | 39 +-
.../iotdb/db/it/query}/IoTDBQueryDemoIT.java | 627 ++++++++++-----------
.../it/query}/IoTDBSelectCompareExpressionIT.java | 13 +-
.../iotdb/db/it/query}/IoTDBSelectSchemaIT.java | 13 +-
.../iotdb/db/integration/IoTDBFilePathUtilsIT.java | 99 ----
.../integration/IoTDBManageTsFileResourceIT.java | 291 ----------
metrics/dropwizard-metrics/pom.xml | 2 +-
metrics/micrometer-metrics/pom.xml | 2 +-
.../org/apache/iotdb/commons/path/PartialPath.java | 2 +-
pom.xml | 2 +-
.../db/engine/cache/TimeSeriesMetadataCache.java | 5 +-
.../apache/iotdb/db/qp/executor/PlanExecutor.java | 2 +-
.../iotdb/db/sync/datasource/TsFileOpBlock.java | 5 +-
.../apache/iotdb/db/tools/TsFileSelfCheckTool.java | 3 +-
.../apache/iotdb/db/tools/TsFileSketchTool.java | 3 +-
.../inner/ReadChunkCompactionPerformerOldTest.java | 2 +-
.../inner/sizetiered/SizeTieredCompactionTest.java | 8 +-
.../iotdb/db/qp/other/TSPlanContextAuthorTest.java | 2 +-
.../iotdb/db/qp/physical/ConcatOptimizerTest.java | 10 +-
.../iotdb/db/qp/physical/PhysicalPlanTest.java | 56 +-
.../iotdb/db/utils/TsFileRewriteToolTest.java | 4 +-
.../db/wal/recover/WALRecoverManagerTest.java | 16 +-
.../file/SealedTsFileRecoverPerformerTest.java | 32 +-
.../file/UnsealedTsFileRecoverPerformerTest.java | 16 +-
.../apache/iotdb/spark/tsfile/DefaultSource.scala | 10 +-
.../iotdb/spark/tsfile/NarrowConverter.scala | 181 +++---
.../org/apache/iotdb/spark/tsfile/TSFileSuit.scala | 30 +-
.../iotdb/tsfile/read/TsFileSequenceReader.java | 12 +-
.../org/apache/iotdb/tsfile/read/common/Path.java | 9 +-
.../read/controller/MetadataQuerierByFileImpl.java | 3 +-
.../iotdb/tsfile/write/writer/TsFileIOWriter.java | 26 +-
.../write/writer/tsmiterator/DiskTSMIterator.java | 7 +-
.../write/writer/tsmiterator/TSMIterator.java | 9 +-
...easurementChunkMetadataListMapIteratorTest.java | 2 +-
.../iotdb/tsfile/read/ReadInPartitionTest.java | 22 +-
.../org/apache/iotdb/tsfile/read/ReadTest.java | 54 +-
.../iotdb/tsfile/read/TimePlainEncodeReadTest.java | 55 +-
.../tsfile/read/TimeSeriesMetadataReadTest.java | 4 +-
.../apache/iotdb/tsfile/read/TsFileReaderTest.java | 126 ++---
.../tsfile/read/controller/ChunkLoaderTest.java | 2 +-
.../controller/IMetadataQuerierByFileImplTest.java | 16 +-
.../read/filter/IExpressionOptimizerTest.java | 30 +-
.../read/query/executor/QueryExecutorTest.java | 32 +-
.../read/query/timegenerator/ReadWriteTest.java | 8 +-
.../query/timegenerator/ReaderByTimestampTest.java | 2 +-
.../timegenerator/TimeGeneratorReadEmptyTest.java | 8 +-
.../timegenerator/TimeGeneratorReadWriteTest.java | 8 +-
.../query/timegenerator/TimeGeneratorTest.java | 6 +-
.../iotdb/tsfile/read/reader/ChunkReaderTest.java | 2 +-
.../tsfile/read/reader/FakedTimeGenerator.java | 9 +-
.../iotdb/tsfile/read/reader/ReaderTest.java | 8 +-
.../tsfile/write/DefaultSchemaTemplateTest.java | 2 +-
.../tsfile/write/MetadataIndexConstructorTest.java | 6 +-
...SameMeasurementsWithDifferentDataTypesTest.java | 4 +-
.../iotdb/tsfile/write/TsFileReadWriteTest.java | 4 +-
.../iotdb/tsfile/write/TsFileWriteApiTest.java | 8 +-
.../iotdb/tsfile/write/TsFileWriterTest.java | 10 +-
.../org/apache/iotdb/tsfile/write/WriteTest.java | 2 +-
.../write/writer/ForceAppendTsFileWriterTest.java | 4 +-
.../write/writer/RestorableTsFileIOWriterTest.java | 36 +-
.../writer/TsFileIOWriterMemoryControlTest.java | 11 +-
67 files changed, 947 insertions(+), 1407 deletions(-)
rename {integration/src/test/java/org/apache/iotdb/db/integration =>
integration-test/src/test/java/org/apache/iotdb/db/it/query}/IoTDBArithmeticIT.java
(60%)
rename {integration/src/test/java/org/apache/iotdb/db/integration =>
integration-test/src/test/java/org/apache/iotdb/db/it/query}/IoTDBFuzzyQueryIT.java
(66%)
rename {integration/src/test/java/org/apache/iotdb/db/integration =>
integration-test/src/test/java/org/apache/iotdb/db/it/query}/IoTDBInIT.java
(90%)
rename {integration/src/test/java/org/apache/iotdb/db/integration =>
integration-test/src/test/java/org/apache/iotdb/db/it/query}/IoTDBQueryDemoIT.java
(51%)
rename {integration/src/test/java/org/apache/iotdb/db/integration =>
integration-test/src/test/java/org/apache/iotdb/db/it/query}/IoTDBSelectCompareExpressionIT.java
(98%)
rename {integration/src/test/java/org/apache/iotdb/db/integration =>
integration-test/src/test/java/org/apache/iotdb/db/it/query}/IoTDBSelectSchemaIT.java
(92%)
delete mode 100644
integration/src/test/java/org/apache/iotdb/db/integration/IoTDBFilePathUtilsIT.java
delete mode 100644
integration/src/test/java/org/apache/iotdb/db/integration/IoTDBManageTsFileResourceIT.java