core/translate: Move prepare_select_plan() to select.rs

The planner.rs file is pretty big. Let's make it smaller by moving more
of select handling to select.rs.
This commit is contained in:
Pekka Enberg 2024-12-31 11:38:13 +02:00
parent dad3a5b069
commit cb5d86ed8e
3 changed files with 246 additions and 242 deletions

View file

@ -36,7 +36,7 @@ pub use storage::wal::WalFile;
pub use storage::wal::WalFileShared;
use util::parse_schema_rows;
use translate::planner::prepare_select_plan;
use translate::select::prepare_select_plan;
pub use error::LimboError;
pub type Result<T> = std::result::Result<T, error::LimboError>;