mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 10:08:20 +00:00
core: Move sorter.rs to vdbe/
This commit is contained in:
parent
e0663f2acf
commit
966ee39589
3 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,6 @@ mod io;
|
|||
mod pager;
|
||||
mod pseudo;
|
||||
mod schema;
|
||||
mod sorter;
|
||||
mod sqlite3_ondisk;
|
||||
mod storage;
|
||||
mod translate;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
pub mod builder;
|
||||
pub mod explain;
|
||||
pub mod sorter;
|
||||
|
||||
use crate::btree::BTreeCursor;
|
||||
use crate::function::{AggFunc, SingleRowFunc};
|
||||
|
@ -927,7 +928,7 @@ impl Program {
|
|||
_ => unreachable!(),
|
||||
})
|
||||
.collect();
|
||||
let cursor = Box::new(crate::sorter::Sorter::new(order));
|
||||
let cursor = Box::new(sorter::Sorter::new(order));
|
||||
cursors.insert(*cursor_id, cursor);
|
||||
state.pc += 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue