pub trait Transform: Send + Sync {
// Required methods
fn transform_name(&self) -> &str;
fn transform_batch(
&self,
pipeline: &Pipeline,
run: &PipelineRun,
records: Vec<Row>,
context: &QueryContext,
) -> DataResult<TransformBatch>;
}