This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a change to branch add_checking_tool
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.
from fd5bca6 fix tests
new b956393 force require apache-rat check for travis (#84)
new db3d1f7 [IOTDB-31] control the float precision of data in memtable
(#83)
new cd8d5fd add missing apache header (#86)
new 609a64c Merge branch 'master' into add_checking_tool
The 1494 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:
.travis.yml | 14 ++--
docs/Documentation/UserGuideV0.7.0/2-Concept.md | 4 ++
.../engine/bufferwrite/BufferWriteProcessor.java | 13 ++--
.../db/engine/filenode/FileNodeProcessor.java | 18 ++---
.../iotdb/db/engine/memtable/AbstractMemTable.java | 9 ++-
.../apache/iotdb/db/engine/memtable/IMemTable.java | 4 +-
.../db/engine/memtable/MemSeriesLazyMerger.java | 20 +++---
.../db/engine/overflow/io/OverflowProcessor.java | 24 +++----
.../db/engine/overflow/io/OverflowSupport.java | 11 ++--
.../querycontext/GlobalSortedSeriesDataSource.java | 8 +--
.../querycontext/OverflowSeriesDataSource.java | 8 +--
.../db/engine/querycontext/ReadOnlyMemChunk.java | 39 ++++++++++-
.../query/reader/mem/MemChunkReaderWithFilter.java | 3 +-
.../java/org/apache/iotdb/db/utils/MathUtils.java | 76 ++++++++++++++++++++++
.../bufferwrite/BufferWriteProcessorNewTest.java | 15 +++--
.../bufferwrite/BufferWriteProcessorTest.java | 15 ++---
.../db/engine/memtable/PrimitiveMemTableTest.java | 18 ++++-
.../engine/overflow/io/OverflowProcessorTest.java | 33 +++++-----
.../db/engine/overflow/io/OverflowSupportTest.java | 5 +-
.../iotdb/db/integration/IoTDBCompleteIT.java | 9 ++-
.../db/integration/IoTDBFloatPrecisionIT.java | 67 ++++++++++++-------
.../org/apache/iotdb/db/utils/MathUtilsTest.java | 64 ++++++++++++++++++
pom.xml | 5 ++
tsfile/pom.xml | 14 +---
.../iotdb/tsfile/file/header/PageHeaderTest.java | 19 ++++++
.../tsfile/read/TsFileSequenceReaderTest.java | 19 ++++++
26 files changed, 395 insertions(+), 139 deletions(-)
create mode 100644 iotdb/src/main/java/org/apache/iotdb/db/utils/MathUtils.java
create mode 100644
iotdb/src/test/java/org/apache/iotdb/db/utils/MathUtilsTest.java