core: Move sorter.rs to vdbe/

This commit is contained in:
Pekka Enberg 2024-07-23 14:54:41 +03:00
parent e0663f2acf
commit 966ee39589
3 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,6 @@ mod io;
mod pager;
mod pseudo;
mod schema;
mod sorter;
mod sqlite3_ondisk;
mod storage;
mod translate;

View file

@ -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;
}