/// Configuration for intermediate pipeline planning.
#[derive(Debug, Clone)]pubstructOperatorPlanConfig{/// If "rows inserted" should be returned as a grand total, or if we should
/// return counts per partition.
pubper_partition_counts:bool,
/// If hash joins are enabled.
pubenable_hash_joins:bool,
}#[derive(Debug, Clone)]pubstructExecutablePlanConfig{/// Target number of partitions in executable pipelines.
////// Partitionining determines parallelism for a single pipeline.
pubpartitions:usize,
/// Target batch size.
pubbatch_size:usize,
}