risingwave_stream/from_proto/
batch_query.rsuse risingwave_common::catalog::ColumnId;
use risingwave_pb::plan_common::StorageTableDesc;
use risingwave_pb::stream_plan::BatchPlanNode;
use risingwave_storage::table::batch_table::storage_table::StorageTable;
use super::*;
use crate::executor::{BatchQueryExecutor, DummyExecutor};
pub struct BatchQueryExecutorBuilder;
impl ExecutorBuilder for BatchQueryExecutorBuilder {
type Node = BatchPlanNode;
async fn new_boxed_executor(
params: ExecutorParams,
node: &Self::Node,
state_store: impl StateStore,
) -> StreamResult<Executor> {
if node.table_desc.is_none() {
let mut info = params.info;
info.identity = "DummyBatchQueryExecutor".to_string();
return Ok((info, DummyExecutor).into());
}
let table_desc: &StorageTableDesc = node.get_table_desc()?;
let column_ids = node
.column_ids
.iter()
.copied()
.map(ColumnId::from)
.collect();
let table = StorageTable::new_partial(
state_store,
column_ids,
params.vnode_bitmap.map(Into::into),
table_desc,
);
assert_eq!(table.schema().data_types(), params.info.schema.data_types());
let exec = BatchQueryExecutor::new(
table,
params.env.config().developer.chunk_size,
params.info.schema.clone(),
);
Ok((params.info, exec).into())
}
}