pub struct NonInteractiveConfig {Show 30 fields
pub data_file: String,
pub query: String,
pub output_format: OutputFormat,
pub output_file: Option<String>,
pub case_insensitive: bool,
pub auto_hide_empty: bool,
pub limit: Option<usize>,
pub query_plan: bool,
pub show_work_units: bool,
pub execution_plan: bool,
pub show_preprocessing: bool,
pub show_transformations: bool,
pub cte_info: bool,
pub rewrite_analysis: bool,
pub lift_in_expressions: bool,
pub script_file: Option<String>,
pub debug_trace: bool,
pub max_col_width: Option<usize>,
pub col_sample_rows: usize,
pub table_style: TableStyle,
pub styled: bool,
pub style_file: Option<String>,
pub no_where_expansion: bool,
pub no_group_by_expansion: bool,
pub no_having_expansion: bool,
pub no_order_by_expansion: bool,
pub no_qualify_to_where: bool,
pub no_expression_lifter: bool,
pub no_cte_hoister: bool,
pub no_in_lifter: bool,
}Expand description
Configuration for non-interactive query execution
Fields§
§data_file: String§query: String§output_format: OutputFormat§output_file: Option<String>§case_insensitive: bool§auto_hide_empty: bool§limit: Option<usize>§query_plan: bool§show_work_units: bool§execution_plan: bool§show_preprocessing: bool§show_transformations: bool§cte_info: bool§rewrite_analysis: bool§lift_in_expressions: bool§script_file: Option<String>§debug_trace: bool§max_col_width: Option<usize>§col_sample_rows: usize§table_style: TableStyle§styled: bool§style_file: Option<String>§no_where_expansion: bool§no_group_by_expansion: bool§no_having_expansion: bool§no_order_by_expansion: bool§no_qualify_to_where: bool§no_expression_lifter: bool§no_cte_hoister: bool§no_in_lifter: boolAuto Trait Implementations§
impl Freeze for NonInteractiveConfig
impl RefUnwindSafe for NonInteractiveConfig
impl Send for NonInteractiveConfig
impl Sync for NonInteractiveConfig
impl Unpin for NonInteractiveConfig
impl UnsafeUnpin for NonInteractiveConfig
impl UnwindSafe for NonInteractiveConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more