Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions rust/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ cargo fmt # Format code
cargo clippy -- -D warnings # Lint with warnings as errors
```

## Pre-commit Checklist

Before committing or pushing, always run these checks:
```bash
cargo fmt # Format code (CI will reject unformatted code)
cargo clippy -- -D warnings # Lint
cargo test # Run all tests
```

## Pull Requests

When creating PRs, always target the upstream repository `adbc-drivers/databricks`, not the personal fork. Use:
Expand Down
2 changes: 2 additions & 0 deletions rust/Cargo.lock

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

2 changes: 2 additions & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ tracing = "0.1"
# Use arrow versions that match driverbase (which uses v57)
# The adbc_core crate accepts >=53.1.0, <58
arrow-array = "57"
arrow-buffer = "57"
arrow-schema = "57"
arrow-select = "57"
arrow-ipc = "57"

# HTTP client and async runtime
Expand Down
Loading
Loading