pub fn create_pipeline_with_config(
verbose: bool,
show_sql_transformations: bool,
transformer_config: TransformerConfig,
) -> PreprocessingPipelineExpand description
Create a preprocessing pipeline with configurable transformers
§Arguments
verbose- Whether to enable verbose loggingtransformer_config- Configuration for which transformers to enable
§Example
ⓘ
let config = TransformerConfig::all_enabled();
let mut pipeline = create_pipeline_with_config(false, config);
let transformed = pipeline.process(statement)?;