Skip to content

Commit c347ae8

Browse files
authored
Merge branch 'main' into log_throw
2 parents fe0cda7 + 88d8faf commit c347ae8

117 files changed

Lines changed: 7762 additions & 3601 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "5.0.0-beta.1"
2+
current_version = "5.0.0-beta.2"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(-(?P<prerelease>(beta|rc))\\.(?P<prerelease_num>\\d+))?"
44
serialize = [
55
"{major}.{minor}.{patch}-{prerelease}.{prerelease_num}",

AGENTS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ AWS_DEFAULT_REGION=us-east-1 pytest --run-integration python/tests/test_s3_ddb.p
6262
- Comments should explain non-obvious "why" reasoning, not restate what the code does.
6363
- Remove debug prints (`println!`, `dbg!`, `print()`) before merging — use `tracing` or logging frameworks.
6464
- Extract logic repeated in 2+ places into a shared helper; inline single-use logic at its call site.
65+
- Think carefully before adding a helper: only introduce one when it materially reduces cognitive load or eliminates substantial duplication, and do not add thin wrappers that only rename or forward existing calls.
6566
- Keep PRs focused — no drive-by refactors, reformatting, or cosmetic changes.
6667
- Be mindful of memory use: avoid collecting streams of `RecordBatch` into memory; use `RoaringBitmap` instead of `HashSet<u32>`.
6768

0 commit comments

Comments
 (0)