risingwave_frontend/optimizer/rule/
table_function_to_postgres_query_rule.rsuse itertools::Itertools;
use risingwave_common::catalog::{Field, Schema};
use risingwave_common::types::{DataType, ScalarImpl};
use risingwave_common::util::iter_util::ZipEqDebug;
use super::{BoxedRule, Rule};
use crate::expr::{Expr, TableFunctionType};
use crate::optimizer::plan_node::generic::GenericPlanRef;
use crate::optimizer::plan_node::{LogicalPostgresQuery, LogicalTableFunction};
use crate::optimizer::PlanRef;
pub struct TableFunctionToPostgresQueryRule {}
impl Rule for TableFunctionToPostgresQueryRule {
fn apply(&self, plan: PlanRef) -> Option<PlanRef> {
let logical_table_function: &LogicalTableFunction = plan.as_logical_table_function()?;
if logical_table_function.table_function.function_type != TableFunctionType::PostgresQuery {
return None;
}
assert!(!logical_table_function.with_ordinality);
let table_function_return_type = logical_table_function.table_function().return_type();
if let DataType::Struct(st) = table_function_return_type.clone() {
let fields = st
.types()
.zip_eq_debug(st.names())
.map(|(data_type, name)| Field::with_name(data_type.clone(), name.to_string()))
.collect_vec();
let schema = Schema::new(fields);
assert_eq!(logical_table_function.table_function().args.len(), 6);
let mut eval_args = vec![];
for arg in &logical_table_function.table_function().args {
assert_eq!(arg.return_type(), DataType::Varchar);
let value = arg.try_fold_const().unwrap().unwrap();
match value {
Some(ScalarImpl::Utf8(s)) => {
eval_args.push(s.to_string());
}
_ => {
unreachable!("must be a varchar")
}
}
}
let hostname = eval_args[0].clone();
let port = eval_args[1].clone();
let username = eval_args[2].clone();
let password = eval_args[3].clone();
let database = eval_args[4].clone();
let query = eval_args[5].clone();
Some(
LogicalPostgresQuery::new(
logical_table_function.ctx(),
schema,
hostname,
port,
username,
password,
database,
query,
)
.into(),
)
} else {
unreachable!("TableFunction return type should be struct")
}
}
}
impl TableFunctionToPostgresQueryRule {
pub fn create() -> BoxedRule {
Box::new(TableFunctionToPostgresQueryRule {})
}
}