This is an automated email from the ASF dual-hosted git repository.
colinlee pushed a change to branch colin_support_read_tree
in repository https://gitbox.apache.org/repos/asf/tsfile.git
discard 3c7073b5 support get all timeseries.
discard 591c721b fix some bugs.
discard f329f4b4 fix some bugs.
omit 847a2d62 support read tree by python.
omit a4d33a04 fix ci.
omit e107d002 fix fmt.
omit 7ef45b5a Support query on tree and modify clang-format.
add 448046fc add ioSizeRecorder (#631)
add 5211bd45 Implement TagFilter functionality (#635)
add 943a7261 Support JDK-25 (#649)
new 26ea7fb6 Support query on tree and modify clang-format.
new 66afe3ed fix fmt.
new c735b2fc fix ci.
new 53dd3a92 support read tree by python.
new f0c8e487 fix some bugs.
new 95830e53 fix some bugs.
new c5d14108 support get all timeseries.
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 (3c7073b5)
\
N -- N -- N refs/heads/colin_support_read_tree (c5d14108)
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.
The 7 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:
.github/workflows/unit-test-java.yml | 2 +-
cpp/examples/cpp_examples/cpp_examples.h | 1 +
cpp/examples/cpp_examples/demo_read.cpp | 7 +-
cpp/pom.xml | 2 +-
cpp/src/reader/device_meta_iterator.cc | 10 +-
cpp/src/reader/filter/filter.h | 5 +
cpp/src/reader/filter/tag_filter.cc | 295 +++++++++++++++
cpp/src/reader/filter/tag_filter.h | 188 ++++++++++
cpp/src/reader/tsfile_reader.cc | 14 +-
cpp/src/reader/tsfile_reader.h | 16 +
cpp/test/reader/filter/tag_filter_test.cc | 417 +++++++++++++++++++++
.../reader/table_view/tsfile_reader_table_test.cc | 6 +-
.../java/org/apache/tsfile/enums/TSDataType.java | 4 +-
.../tsfile/encoding/decoder/IntChimpDecoder.java | 16 +-
.../tsfile/encoding/decoder/IntGorillaDecoder.java | 4 +-
.../tsfile/encoding/decoder/LongChimpDecoder.java | 22 +-
.../encoding/decoder/LongGorillaDecoder.java | 4 +-
.../apache/tsfile/read/TsFileDeviceIterator.java | 20 +-
.../apache/tsfile/read/TsFileSequenceReader.java | 56 ++-
.../operator/ExtractTimeFilterOperators.java | 18 +-
.../org/apache/tsfile/utils/Murmur128Hash.java | 28 +-
pom.xml | 8 +-
22 files changed, 1055 insertions(+), 88 deletions(-)
create mode 100644 cpp/src/reader/filter/tag_filter.cc
create mode 100644 cpp/src/reader/filter/tag_filter.h
create mode 100644 cpp/test/reader/filter/tag_filter_test.cc