mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
fix debug imports
This commit is contained in:
parent
83f13596a4
commit
6086284613
1 changed files with 2 additions and 2 deletions
|
@ -2054,7 +2054,7 @@ impl BTreeCursor {
|
|||
parent_page: &PageRef,
|
||||
balance_info: &mut BalanceInfo,
|
||||
parent_contents: &mut PageContent,
|
||||
pages_to_balance_new: Vec<Arc<crate::Page>>,
|
||||
pages_to_balance_new: Vec<std::sync::Arc<crate::Page>>,
|
||||
page_type: PageType,
|
||||
leaf_data: bool,
|
||||
mut cells_debug: Vec<Vec<u8>>,
|
||||
|
@ -2260,7 +2260,7 @@ impl BTreeCursor {
|
|||
}
|
||||
let cell_buf: &'static mut [u8] =
|
||||
to_static_buf(&mut cells_debug[current_index_cell - 1]);
|
||||
let cell = read_btree_cell(
|
||||
let cell = crate::storage::sqlite3_ondisk::read_btree_cell(
|
||||
cell_buf,
|
||||
&page_type,
|
||||
0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue