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

colinlee pushed a change to branch colin_fix_tag_empty
in repository https://gitbox.apache.org/repos/asf/tsfile.git


 discard 3b74e143 add uts.
 discard 2b7ab52c fix path err.
 discard cfbe7b3f fix path null.:
 discard 5585a16f fix empty error.
 discard aabe4269 add ut.
 discard 156c6063 add null path tests.
 discard b066f152 fix ut.
 discard 73a12b7c Allow setting null tags.
 discard 622528e4 fix read error when tag is empty.
    omit c34969a6 add timestamp check.
     add d2119c1e add table/column schema check. (#488)
     add e795637d delete parameter encrypt_flag (#491)
     add 6f08fb13 Colin fix config (#493)
     add 14cefc91 fix data lossing when page num exceed 1. (#495)
     add cc8f3637 Colin fix config (#472)
     add dd603b4e Bump setuptools from 70.0.0 to 78.1.1 in /python (#497)
     add 3a688eea Add TsFileLastReader for retrieving last points in a TsFile 
(#498)
     add 18565727 Update release information of TsFile v2.0.3 (#505)
     add a5424d37 Same name (case insensitive) in tablet / table. (#490)
     add 6672d2da Fix (#508)
     add a71b8d4e fix minus encode and decode. (#511)
     add 7859080c Zjt/encrypt key from environment (#512)
     add 2995362e Fix npe when closing a last reader that have not been used 
(#513)
     add 816623ae add timestamp check.
     add 02352a8f fix read error when tag is empty.
     add 9a5d2aa0 fix tag empty error.
     add c40d043a add no_str_to_read.

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   (3b74e143)
            \
             N -- N -- N   refs/heads/colin_fix_tag_empty (c40d043a)

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:
 .gitignore                                         |   1 +
 RELEASE_NOTES.md                                   |  12 +
 cpp/pom.xml                                        |   2 +-
 cpp/src/common/allocator/byte_stream.h             |  10 +-
 cpp/src/common/config/config.h                     |   7 +
 cpp/src/common/constant/tsfile_constant.h          |   2 +-
 cpp/src/common/db_common.h                         |  42 ---
 cpp/src/common/global.cc                           |  26 +-
 cpp/src/common/global.h                            |  92 ++++++
 cpp/src/common/schema.h                            |  10 +-
 cpp/src/common/tablet.cc                           |  16 +-
 cpp/src/common/tablet.h                            |  13 +-
 cpp/src/cwrapper/tsfile_cwrapper.cc                |   7 +-
 cpp/src/encoding/gorilla_decoder.h                 |   2 +-
 cpp/src/reader/aligned_chunk_reader.cc             |   4 +
 cpp/src/reader/tsfile_series_scan_iterator.cc      |   9 +-
 cpp/src/utils/db_utils.h                           |   6 +-
 cpp/src/writer/tsfile_table_writer.cc              |   4 +
 cpp/src/writer/tsfile_table_writer.h               |   6 +-
 cpp/src/writer/tsfile_writer.cc                    |  25 +-
 cpp/test/cwrapper/c_release_test.cc                |  10 +-
 cpp/test/encoding/plain_codec_test.cc              |  22 ++
 .../writer/table_view/tsfile_writer_table_test.cc  |  85 +++++
 doap_tsfile.rdf                                    |  12 +-
 java/common/pom.xml                                |   2 +-
 java/examples/pom.xml                              |   4 +-
 java/pom.xml                                       |   4 +-
 java/tools/pom.xml                                 |   6 +-
 java/tsfile/pom.xml                                |   4 +-
 .../apache/tsfile/common/conf/TSFileConfig.java    |  23 +-
 .../tsfile/common/conf/TSFileDescriptor.java       |   3 +-
 .../org/apache/tsfile/encrypt/EncryptUtils.java    | 117 ++++++-
 .../tsfile/file/metadata/TimeseriesMetadata.java   |  31 +-
 .../tsfile/file/metadata/TsFileMetadata.java       |   2 +-
 .../file/metadata/statistics/TimeStatistics.java   |   8 +-
 .../apache/tsfile/read/TsFileSequenceReader.java   | 193 ++++++++++-
 .../java/org/apache/tsfile/read/common/Chunk.java  |   4 +
 .../tsfile/read/reader/TsFileLastReader.java       | 313 ++++++++++++++++++
 .../tsfile/read/reader/page/ValuePageReader.java   |   4 +
 .../java/org/apache/tsfile/utils/WriteUtils.java   |   5 +
 .../java/org/apache/tsfile/write/TsFileWriter.java |   8 +-
 .../org/apache/tsfile/write/record/Tablet.java     |  14 +-
 .../tsfile/write/schema/IMeasurementSchema.java    |   3 +-
 .../tsfile/write/schema/MeasurementSchema.java     |  12 +
 .../write/schema/VectorMeasurementSchema.java      |  17 +
 .../write/v4/AbstractTableModelTsFileWriter.java   |   8 +-
 .../apache/tsfile/write/writer/TsFileIOWriter.java |  12 +-
 .../tsfile/read/reader/TsFileLastReaderTest.java   | 367 +++++++++++++++++++++
 pom.xml                                            |   6 +-
 python/pom.xml                                     |   2 +-
 python/requirements.txt                            |   2 +-
 python/setup.py                                    |  46 ++-
 python/tests/test_basic.py                         |  34 +-
 python/tests/test_write_and_read.py                |  60 +++-
 python/tsfile/__init__.py                          |   1 +
 python/tsfile/exceptions.py                        |   5 +
 python/tsfile/schema.py                            |   8 +
 python/tsfile/tablet.py                            |   3 +-
 python/tsfile/tsfile_cpp.pxd                       |  34 +-
 python/tsfile/tsfile_py_cpp.pxd                    |   4 +-
 python/tsfile/tsfile_py_cpp.pyx                    | 117 +++++++
 python/tsfile/tsfile_table_writer.py               |   5 +-
 python/tsfile/tsfile_writer.pyx                    |   2 +-
 63 files changed, 1733 insertions(+), 185 deletions(-)
 create mode 100644 
java/tsfile/src/main/java/org/apache/tsfile/read/reader/TsFileLastReader.java
 create mode 100644 
java/tsfile/src/test/java/org/apache/tsfile/read/reader/TsFileLastReaderTest.java

Reply via email to