use crate::eval::evaluable::Evaluable;
use crate::eval::expr::EvalExpr;
use crate::eval::EvalContext;
use partiql_value::{Tuple, Value};
use std::borrow::Cow;
use thiserror::Error;
#[derive(Debug)]
pub struct PlanErr {
pub errors: Vec<PlanningError>,
}
#[derive(Error, Debug, Clone, PartialEq, Eq, Hash)]
#[non_exhaustive]
pub enum PlanningError {
#[error("Not yet implemented: {0}")]
NotYetImplemented(String),
#[error("Illegal State: {0}")]
IllegalState(String),
}
#[derive(Debug)]
pub struct EvalErr {
pub errors: Vec<EvaluationError>,
}
#[derive(Error, Debug, Clone, PartialEq, Eq, Hash)]
#[non_exhaustive]
pub enum EvaluationError {
#[error("Illegal State: {0}")]
IllegalState(String),
#[error("Evaluation Error: invalid evaluation plan detected `{0}`")]
InvalidEvaluationPlan(String),
#[error("Not yet implemented: {0}")]
NotYetImplemented(String),
}
#[derive(Debug)]
pub(crate) struct ErrorNode {}
impl ErrorNode {
pub(crate) fn new() -> ErrorNode {
ErrorNode {}
}
}
impl Evaluable for ErrorNode {
fn evaluate(&mut self, _ctx: &dyn EvalContext) -> Value {
panic!("ErrorNode will not be evaluated")
}
fn update_input(&mut self, _input: Value, _branch_num: u8, _ctx: &dyn EvalContext) {
panic!("ErrorNode will not be evaluated")
}
}
impl EvalExpr for ErrorNode {
fn evaluate<'a>(&'a self, _bindings: &'a Tuple, _ctx: &'a dyn EvalContext) -> Cow<'a, Value> {
panic!("ErrorNode will not be evaluated")
}
}