risingwave_frontend/optimizer/plan_node/
batch_mysql_query.rsuse pretty_xmlish::XmlNode;
use risingwave_pb::batch_plan::plan_node::NodeBody;
use risingwave_pb::batch_plan::MySqlQueryNode;
use super::batch::prelude::*;
use super::utils::{childless_record, column_names_pretty, Distill};
use super::{
generic, ExprRewritable, PlanBase, PlanRef, ToBatchPb, ToDistributedBatch, ToLocalBatch,
};
use crate::error::Result;
use crate::optimizer::plan_node::expr_visitable::ExprVisitable;
use crate::optimizer::property::{Distribution, Order};
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct BatchMySqlQuery {
pub base: PlanBase<Batch>,
pub core: generic::MySqlQuery,
}
impl BatchMySqlQuery {
pub fn new(core: generic::MySqlQuery) -> Self {
let base = PlanBase::new_batch_with_core(&core, Distribution::Single, Order::any());
Self { base, core }
}
pub fn column_names(&self) -> Vec<&str> {
self.schema().names_str()
}
pub fn clone_with_dist(&self) -> Self {
let base = self.base.clone_with_new_distribution(Distribution::Single);
Self {
base,
core: self.core.clone(),
}
}
}
impl_plan_tree_node_for_leaf! { BatchMySqlQuery }
impl Distill for BatchMySqlQuery {
fn distill<'a>(&self) -> XmlNode<'a> {
let fields = vec![("columns", column_names_pretty(self.schema()))];
childless_record("BatchMySqlQuery", fields)
}
}
impl ToLocalBatch for BatchMySqlQuery {
fn to_local(&self) -> Result<PlanRef> {
Ok(self.clone_with_dist().into())
}
}
impl ToDistributedBatch for BatchMySqlQuery {
fn to_distributed(&self) -> Result<PlanRef> {
Ok(self.clone_with_dist().into())
}
}
impl ToBatchPb for BatchMySqlQuery {
fn to_batch_prost_body(&self) -> NodeBody {
NodeBody::MysqlQuery(MySqlQueryNode {
columns: self
.core
.columns()
.iter()
.map(|c| c.to_protobuf())
.collect(),
hostname: self.core.hostname.clone(),
port: self.core.port.clone(),
username: self.core.username.clone(),
password: self.core.password.clone(),
database: self.core.database.clone(),
query: self.core.query.clone(),
})
}
}
impl ExprRewritable for BatchMySqlQuery {}
impl ExprVisitable for BatchMySqlQuery {}