This is an automated email from the ASF dual-hosted git repository.
colinlee pushed a change to branch read_parallel
in repository https://gitbox.apache.org/repos/asf/tsfile.git
discard d4be0ab9 support read parallel.
add b8885ae1 Optimize and Fix some bugs in TsFileDataFrame (#773)
add fa3e01f1 fix(cpp): aligned VECTOR row-offset skip only when time/value
counts match (#778)
add cb595432 fix(cpp): skip missing device/measurement in tree queryByRow
(#777)
add 3c809d5f Fix tree queryByRow device ID parsing for multi-segment paths
(#776)
add 753939f3 tmp code.
add 7ba1919b fix format.
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (d4be0ab9)
\
N -- N -- N refs/heads/read_parallel (7ba1919b)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
cpp/src/common/global.cc | 5 +-
cpp/src/common/path.cc | 15 +-
cpp/src/common/tsblock/tsblock.h | 6 -
cpp/src/encoding/decoder.h | 97 --
cpp/src/file/tsfile_io_reader.cc | 6 +-
cpp/src/reader/aligned_chunk_reader.cc | 1084 +++++---------------
cpp/src/reader/aligned_chunk_reader.h | 111 +-
cpp/src/reader/filter/filter.h | 13 -
cpp/src/reader/qds_without_timegenerator.cc | 22 +-
cpp/src/reader/tsfile_series_scan_iterator.cc | 29 +-
cpp/src/reader/tsfile_series_scan_iterator.h | 8 +
.../reader/table_view/tsfile_reader_table_test.cc | 2 +-
.../table_view/tsfile_table_query_by_row_test.cc | 3 +-
.../reader/tree_view/tsfile_reader_tree_test.cc | 2 +-
.../tree_view/tsfile_tree_query_by_row_test.cc | 70 +-
cpp/test/reader/tsfile_reader_test.cc | 2 +-
python/tests/test_query_by_row.py | 76 ++
python/tests/test_tsfile_dataset.py | 465 ++++++++-
python/tsfile/dataset/dataframe.py | 154 ++-
python/tsfile/dataset/formatting.py | 59 +-
python/tsfile/dataset/metadata.py | 90 +-
python/tsfile/dataset/reader.py | 93 +-
python/tsfile/tsfile_py_cpp.pxd | 8 +-
python/tsfile/tsfile_py_cpp.pyx | 6 +-
24 files changed, 1268 insertions(+), 1158 deletions(-)