Skip to content

Commit

Permalink
Merge 'core: core btree splitting' from Pere Diaz Bou
Browse files Browse the repository at this point in the history
This pr adds a new crate to increase expressivity of tests with complex
things like btree node splitting.
To run tests:
```bash
cd core_tester
cargo test test_sequential_write -- --nocapture
```
This prs improves btree balancing with simple page splitting and some
minor refactors.

Closes #316
  • Loading branch information
penberg committed Sep 13, 2024
2 parents 9c1bdf9 + 3e52259 commit 92a9b86
Show file tree
Hide file tree
Showing 8 changed files with 511 additions and 179 deletions.
14 changes: 14 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 13 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
[workspace]
resolver = "2"
members = [
"bindings/python",
"bindings/wasm",
"cli",
"sqlite3",
"core",
"simulator",
"bindings/python",
"bindings/wasm",
"cli",
"sqlite3",
"core",
"simulator",
"test",
]
exclude = ["perf/latency/limbo"]

Expand All @@ -28,7 +29,12 @@ ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Which actions to run on pull requests
pr-run-mode = "plan"
# Path that installers should place binaries in
Expand Down
Loading

0 comments on commit 92a9b86

Please sign in to comment.