glaredb_core 25.6.2

Core functionality for GlareDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use glaredb_error::{Result, not_implemented};

use super::OperatorPlanState;
use crate::execution::operators::PlannedOperatorWithChildren;
use crate::logical::logical_unnest::LogicalUnnest;
use crate::logical::operator::Node;

impl OperatorPlanState<'_> {
    pub fn plan_unnest(
        &mut self,
        _unnest: Node<LogicalUnnest>,
    ) -> Result<PlannedOperatorWithChildren> {
        not_implemented!("plan unnest")
    }
}