This is an automated email from the ASF dual-hosted git repository.
ColinLeeo pushed a change to branch codex/python-error-code-alignment
in repository https://gitbox.apache.org/repos/asf/tsfile.git
discard c231e13e8 refactor: remove legacy error codes
discard 3f1266ff2 Fix Windows reader error cleanup
discard c2ff6ebd2 Initialize Cython native handles defensively
discard af9cf2fa0 Fix Python error handling lifecycle
discard e90e06c9e fix: preserve error code compatibility
discard ff5b56317 refactor: remove unused database error codes
discard 514de3d70 fix(python): align native error handling
discard a96e7af43 C++: enable SIMD by default
omit 39ce52947 fix invalid datatype.
add b4646b62a fix invalid datatype. (#864)
add 1f38d11c9 Bump actions/cache from 5 to 6 (#855)
add d34ac0015 Bump actions/setup-node from 4 to 6 (#854)
add 51fe8bb8f Bump codecov/codecov-action from 6 to 7 (#853)
add 2a3349034 Bump com.fasterxml.jackson.core:jackson-databind in /java
(#865)
add 4b72bd04c Bump actions/checkout from 4 to 7 (#856)
add 0ae3e7526 Bump pnpm/action-setup from 4 to 6 (#852)
add e5e4cccfd [Python][C++] Fix tree-model TsFileDataFrame returning empty
data on reused readers and uppercase names (#862)
add 466895099 C++: enable SIMD by default (#867)
add b8825b18c Add buffered TsFile input (#868)
add 5b4cad25f Add configurable TsFileInput reader constructor (#869)
add 7a7d7f96e perf(cpp): push down multi-value aligned offsets (#863)
add 928ca9412 Optimize small BitMap with long-backed implementation (#871)
add 23787f82a Update release information for TsFile 2.4.0 (#874)
add 608955c8f Fix Python wheel test skipping and dependencies (#876)
add 7d44338c1 Optimize Gorilla batch floating-point decoding (#873)
add c7615f756 Bump com.fasterxml.jackson.core:jackson-core in /java (#877)
add 07e1b4017 fix(python): align native error handling
add 4d4ec0d76 refactor: remove unused database error codes
add 66e95ffb3 fix: preserve error code compatibility
add e05f703e3 Fix Python error handling lifecycle
add da5efde60 Initialize Cython native handles defensively
add e95bc00ca Fix Windows reader error cleanup
add 4df546b12 refactor: remove legacy error codes
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 (c231e13e8)
\
N -- N -- N refs/heads/codex/python-error-code-alignment
(4df546b12)
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/code-coverage.yml | 6 +-
.github/workflows/codeql.yml | 2 +-
.github/workflows/site-build.yaml | 12 +-
.github/workflows/unit-test-cpp-msvc.yml | 4 +-
.github/workflows/unit-test-cpp.yml | 4 +-
.github/workflows/unit-test-java.yml | 4 +-
.github/workflows/unit-test-python-msvc.yml | 4 +-
.github/workflows/unit-test-python.yml | 4 +-
.github/workflows/wheels.yml | 6 +-
RELEASE_NOTES.md | 23 +
cpp/src/common/device_id.cc | 8 +
cpp/src/common/schema.h | 35 +-
cpp/src/encoding/gorilla_decoder.h | 486 ++++++++++++-------
cpp/src/reader/aligned_chunk_reader.cc | 140 ++++--
cpp/src/reader/aligned_chunk_reader.h | 21 +-
.../reader/block/single_device_tsblock_reader.cc | 64 ++-
.../reader/block/single_device_tsblock_reader.h | 12 +-
cpp/src/reader/chunk_reader.cc | 21 +-
cpp/src/reader/chunk_reader.h | 3 +-
cpp/src/reader/table_query_executor.cc | 8 +-
cpp/src/reader/tsfile_series_scan_iterator.cc | 60 ++-
cpp/src/reader/tsfile_series_scan_iterator.h | 8 +
cpp/test/common/device_id_test.cc | 20 +
cpp/test/encoding/gorilla_codec_test.cc | 200 ++++++++
cpp/test/reader/tsfile_reader_test.cc | 461 +++++++++++++++++-
doap_tsfile.rdf | 9 +-
.../main/java/org/apache/tsfile/utils/BitMap.java | 257 +++-------
.../org/apache/tsfile/utils/BitMapArrayImpl.java | 298 ++++++++++++
.../java/org/apache/tsfile/utils/BitMapImpl.java | 105 ++++
.../org/apache/tsfile/utils/BitMapLongImpl.java | 238 +++++++++
.../org/apache/tsfile/utils/RamUsageEstimator.java | 9 +-
java/pom.xml | 4 +-
.../apache/tsfile/read/TsFileSequenceReader.java | 24 +
.../tsfile/read/reader/BufferedTsFileInput.java | 203 ++++++++
.../tsfile/read/reader/LocalTsFileInput.java | 4 +
.../java/org/apache/tsfile/utils/PublicBAOS.java | 4 +
.../read/TsFileSequenceReaderPerformanceTest.java | 331 +++++++++++++
.../read/reader/BufferedTsFileInputTest.java | 145 ++++++
.../apache/tsfile/utils/BitMapPerformanceTest.java | 537 +++++++++++++++++++++
.../java/org/apache/tsfile/utils/BitMapTest.java | 130 ++++-
python/pom.xml | 4 +-
python/pyproject.toml | 4 +-
python/requirements.txt | 4 +-
python/tests/test_tsfile_dataset.py | 164 +++++++
44 files changed, 3562 insertions(+), 528 deletions(-)
create mode 100644
java/common/src/main/java/org/apache/tsfile/utils/BitMapArrayImpl.java
create mode 100644
java/common/src/main/java/org/apache/tsfile/utils/BitMapImpl.java
create mode 100644
java/common/src/main/java/org/apache/tsfile/utils/BitMapLongImpl.java
create mode 100644
java/tsfile/src/main/java/org/apache/tsfile/read/reader/BufferedTsFileInput.java
create mode 100644
java/tsfile/src/test/java/org/apache/tsfile/read/TsFileSequenceReaderPerformanceTest.java
create mode 100644
java/tsfile/src/test/java/org/apache/tsfile/read/reader/BufferedTsFileInputTest.java
create mode 100644
java/tsfile/src/test/java/org/apache/tsfile/utils/BitMapPerformanceTest.java