liwuhen opened a new pull request, #481: URL: https://github.com/apache/paimon-rust/pull/481
## What Commit #479 (`feat(core): incremental global index build for btree, lumina, and vindex`) introduced references to an undefined constant `BTREE_INDEX_TYPE` in `crates/paimon/src/table/btree_global_index_build_builder.rs`, causing a `E0425: cannot find value BTREE_INDEX_TYPE in this scope` compile error. This broke `main` across all CI jobs (Clippy, build, unit tests, integration). ## Fix Replace the four `BTREE_INDEX_TYPE` references with `BTREE_GLOBAL_INDEX_TYPE`, the constant already imported in the module from `global_index_types` (value `"btree"`). ## Verification `cargo clippy -p paimon --all-targets` passes cleanly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
