This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-mosaic.git
from 4109d2d Update README.md
add b68cf6a [core] Add mosaic-core crate with format spec, reader, and
writer
add 448e02c [ci] Add GitHub Actions workflow for build, test, clippy, and
fmt
add 6cb483a Fix comments
new f7dc71a [core] Add mosaic-core crate with format spec, reader, and
writer
The 1 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/ci.yml | 73 +++
.gitignore => Cargo.toml | 32 +-
.gitignore => core/Cargo.toml | 40 +-
core/src/bpe.rs | 136 +++++
core/src/bucket_reader.rs | 1319 +++++++++++++++++++++++++++++++++++++++++
core/src/bucket_writer.rs | 1080 +++++++++++++++++++++++++++++++++
core/src/lib.rs | 27 +
core/src/reader.rs | 818 +++++++++++++++++++++++++
core/src/schema.rs | 394 ++++++++++++
core/src/spec.rs | 96 +++
core/src/types.rs | 242 ++++++++
core/src/values.rs | 161 +++++
core/src/varint.rs | 160 +++++
core/src/writer.rs | 708 ++++++++++++++++++++++
14 files changed, 5231 insertions(+), 55 deletions(-)
create mode 100644 .github/workflows/ci.yml
copy .gitignore => Cargo.toml (72%)
copy .gitignore => core/Cargo.toml (72%)
create mode 100644 core/src/bpe.rs
create mode 100644 core/src/bucket_reader.rs
create mode 100644 core/src/bucket_writer.rs
create mode 100644 core/src/lib.rs
create mode 100644 core/src/reader.rs
create mode 100644 core/src/schema.rs
create mode 100644 core/src/spec.rs
create mode 100644 core/src/types.rs
create mode 100644 core/src/values.rs
create mode 100644 core/src/varint.rs
create mode 100644 core/src/writer.rs