fnck_sql/expression/function/
mod.rs

1use crate::types::LogicalType;
2use serde::{Deserialize, Serialize};
3
4pub mod scala;
5pub mod table;
6
7#[derive(Debug, Eq, PartialEq, Hash, Clone, Serialize, Deserialize)]
8pub struct FunctionSummary {
9    pub name: String,
10    pub arg_types: Vec<LogicalType>,
11}