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

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


 discard 7d0ec9da refine code.
 discard 3c2fccc3 tmp code.
     add 237b721e Support dataframe to tsfile (#706)
     add 273f2cf9 Bump actions/upload-artifact from 4 to 5 (#620)
     add 5f51dd0d tmp code.
     add 465f4c82 refine code.

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   (7d0ec9da)
            \
             N -- N -- N   refs/heads/remove_unused_code (465f4c82)

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-python.yml             |   2 +-
 cpp/src/common/constant/tsfile_constant.h          |   4 +-
 cpp/src/common/global.cc                           |   2 +-
 cpp/src/common/tsblock/tuple_desc.h                |  30 +-
 cpp/src/cwrapper/tsfile_cwrapper.cc                |   1 -
 cpp/src/cwrapper/tsfile_cwrapper.h                 |   7 +-
 .../reader/block/single_device_tsblock_reader.cc   |   8 +
 cpp/src/reader/column_mapping.h                    |  11 +-
 cpp/src/reader/table_query_executor.cc             |  11 +-
 cpp/src/utils/db_utils.h                           |   5 +-
 .../reader/table_view/tsfile_reader_table_test.cc  |  81 +++++
 .../writer/table_view/tsfile_writer_table_test.cc  |   2 +-
 python/tests/resources/README.md                   |  52 ++-
 .../tests/resources/table_with_time_column.tsfile  | Bin 0 -> 644 bytes
 python/tests/test_basic.py                         |   2 +-
 python/tests/test_dataframe.py                     | 320 +++++++++++++++++
 python/tests/test_load_tsfile_from_iotdb.py        |  37 +-
 python/tests/test_to_tsfile.py                     | 378 +++++++++++++++++++++
 python/tests/test_write_and_read.py                | 256 +-------------
 python/tsfile/__init__.py                          |   2 +-
 python/tsfile/constants.py                         |  98 +++++-
 python/tsfile/exceptions.py                        |   2 +-
 python/tsfile/schema.py                            |  64 +++-
 python/tsfile/tsfile_cpp.pxd                       |   8 +-
 python/tsfile/tsfile_py_cpp.pxd                    |   1 +
 python/tsfile/tsfile_py_cpp.pyx                    | 195 ++++++++++-
 python/tsfile/tsfile_reader.pyx                    |  16 +-
 python/tsfile/tsfile_table_writer.py               | 134 +++++++-
 python/tsfile/tsfile_writer.pyx                    |  30 +-
 python/tsfile/utils.py                             | 139 +++++++-
 30 files changed, 1579 insertions(+), 319 deletions(-)
 create mode 100644 python/tests/resources/table_with_time_column.tsfile
 create mode 100644 python/tests/test_dataframe.py
 create mode 100644 python/tests/test_to_tsfile.py

Reply via email to