This is an automated email from the ASF dual-hosted git repository.

colinlee pushed a change to branch feature/python-new-datatypes
in repository https://gitbox.apache.org/repos/asf/tsfile.git


 discard bc7e1b02 fix some comment.
 discard 781b606b fix some bugs.
 discard c234bb00 Feature/python new datatypes (#641)
     add 4330d7cc perf: Use enum types for compression and encoding instead of 
strings (#640)
     add 1bb3780b Fix/cpp get device schema (#642)
     add 448046fc add ioSizeRecorder (#631)
     add 5211bd45 Implement TagFilter functionality (#635)
     add 943a7261 Support JDK-25 (#649)
     add 7aa41412 support read tree data (#643)
     add c46cbd71 Feature/python new datatypes (#641)
     add 10d82720 fix some bugs.
     add 748cba3c fix some comment.
     add d7411f36 fix fmt.

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   (bc7e1b02)
            \
             N -- N -- N   refs/heads/feature/python-new-datatypes (d7411f36)

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:
 .github/workflows/unit-test-java.yml               |   2 +-
 cpp/.clang-format                                  |   3 +-
 cpp/examples/cpp_examples/cpp_examples.h           |   1 +
 cpp/examples/cpp_examples/demo_read.cpp            |   7 +-
 cpp/pom.xml                                        |   2 +-
 cpp/src/common/device_id.h                         |  33 ++
 cpp/src/common/schema.h                            |  83 ++--
 cpp/src/common/tsblock/tsblock.h                   |  74 ++--
 cpp/src/common/tsfile_common.h                     | 295 +++++++--------
 cpp/src/cwrapper/tsfile_cwrapper.cc                | 309 ++++++++-------
 cpp/src/cwrapper/tsfile_cwrapper.h                 |  13 +
 cpp/src/file/tsfile_io_reader.cc                   | 187 ++++-----
 .../reader/block/single_device_tsblock_reader.cc   |  13 +-
 cpp/src/reader/device_meta_iterator.cc             |  24 +-
 cpp/src/reader/device_meta_iterator.h              |  36 +-
 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/imeta_data_querier.h                |   5 +-
 cpp/src/reader/meta_data_querier.cc                |   6 +
 cpp/src/reader/meta_data_querier.h                 |   3 +
 cpp/src/reader/table_query_executor.cc             | 120 +++++-
 cpp/src/reader/table_query_executor.h              |  22 +-
 cpp/src/reader/task/device_task_iterator.h         |  15 +
 cpp/src/reader/tsfile_reader.cc                    |  93 ++++-
 cpp/src/reader/tsfile_reader.h                     |  56 ++-
 cpp/test/reader/bloom_filter_test.cc               |   4 +-
 cpp/test/reader/filter/tag_filter_test.cc          | 417 +++++++++++++++++++++
 .../reader/table_view/tsfile_reader_table_test.cc  |   6 +-
 .../reader/tree_view/tsfile_reader_tree_test.cc    | 278 +++++++++++++-
 cpp/test/reader/tsfile_reader_test.cc              |   2 +-
 .../java/org/apache/tsfile/enums/TSDataType.java   |   4 +-
 .../apache/tsfile/common/conf/TSFileConfig.java    | 108 +++---
 .../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 ++-
 .../java/org/apache/tsfile/read/common/Chunk.java  |   6 +-
 .../operator/ExtractTimeFilterOperators.java       |  18 +-
 .../org/apache/tsfile/utils/Murmur128Hash.java     |  28 +-
 .../tsfile/write/schema/MeasurementSchema.java     |   2 +-
 .../write/schema/MeasurementSchemaBuilder.java     |   3 +-
 .../tsfile/write/schema/TimeseriesSchema.java      |   2 +-
 .../write/schema/VectorMeasurementSchema.java      |   3 +-
 pom.xml                                            |   8 +-
 python/tests/test_write_and_read.py                | 232 +++++++++++-
 python/tsfile/constants.py                         |   4 +-
 python/tsfile/schema.py                            |   6 +
 python/tsfile/tsfile_cpp.pxd                       |   8 +
 python/tsfile/tsfile_py_cpp.pxd                    |   3 +
 python/tsfile/tsfile_py_cpp.pyx                    | 167 ++++++---
 python/tsfile/tsfile_reader.pyx                    |  21 ++
 python/tsfile/utils.py                             | 107 ++++--
 55 files changed, 2703 insertions(+), 746 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

Reply via email to