pub struct QueryExecutor { /* private fields */ }
Expand description
クエリ実行器
Implementations§
Source§impl QueryExecutor
impl QueryExecutor
pub fn new() -> Self
Sourcepub fn execute_gql(
&self,
gql: &str,
graph: &GraphRef,
catalog: &Catalog,
) -> Result<RowStream>
pub fn execute_gql( &self, gql: &str, graph: &GraphRef, catalog: &Catalog, ) -> Result<RowStream>
GQLクエリを実行
Sourcepub fn execute_plan(
&self,
plan: &PlanIR,
graph: &GraphRef,
catalog: &Catalog,
) -> Result<RowStream>
pub fn execute_plan( &self, plan: &PlanIR, graph: &GraphRef, catalog: &Catalog, ) -> Result<RowStream>
論理プランを実行
Sourcepub fn execute_physical_plan(
&self,
plan: &PhysicalPlan,
graph: &GraphRef,
catalog: &Catalog,
) -> Result<RowStream>
pub fn execute_physical_plan( &self, plan: &PhysicalPlan, graph: &GraphRef, catalog: &Catalog, ) -> Result<RowStream>
物理プランを実行
Trait Implementations§
Source§impl Debug for QueryExecutor
impl Debug for QueryExecutor
Auto Trait Implementations§
impl Freeze for QueryExecutor
impl RefUnwindSafe for QueryExecutor
impl Send for QueryExecutor
impl Sync for QueryExecutor
impl Unpin for QueryExecutor
impl UnwindSafe for QueryExecutor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more