pub trait Executable {
// Required method
fn execute(
&self,
ctx: &mut Context,
filters: &FilterLibrary,
cache: &dyn CacheStore,
) -> Result<()>;
}Expand description
Execute a compiled plan synchronously. For parallel branches, uses the async executor under the hood. Contract for executing a plan.