Struct datafusion_common::config::CatalogOptions

source ·
pub struct CatalogOptions {
    pub create_default_catalog_and_schema: bool,
    pub default_catalog: String,
    pub default_schema: String,
    pub information_schema: bool,
    pub location: Option<String>,
    pub format: Option<String>,
    pub has_header: bool,
    pub newlines_in_values: bool,
}
Expand description

Options related to catalog and directory scanning

See also: SessionConfig

Fields§

§create_default_catalog_and_schema: bool

Whether the default catalog and schema should be created automatically.

§default_catalog: String

The default catalog name - this impacts what SQL queries use if not specified

§default_schema: String

The default schema name - this impacts what SQL queries use if not specified

§information_schema: bool

Should DataFusion provide access to information_schema virtual tables for displaying schema information

§location: Option<String>

Location scanned to load tables for default schema

§format: Option<String>

Type of TableProvider to use when loading default schema

§has_header: bool

Default value for format.has_header for CREATE EXTERNAL TABLE if not specified explicitly in the statement.

§newlines_in_values: bool

Specifies whether newlines in (quoted) CSV values are supported.

This is the default value for format.newlines_in_values for CREATE EXTERNAL TABLE if not specified explicitly in the statement.

Parsing newlines in quoted values may be affected by execution behaviour such as parallel file scanning. Setting this to true ensures that newlines in values are parsed successfully, which may reduce performance.

Trait Implementations§

source§

impl Clone for CatalogOptions

source§

fn clone(&self) -> CatalogOptions

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl ConfigField for CatalogOptions

source§

fn set(&mut self, key: &str, value: &str) -> Result<()>

source§

fn visit<V: Visit>( &self, v: &mut V, key_prefix: &str, _description: &'static str, )

source§

impl Debug for CatalogOptions

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for CatalogOptions

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl PartialEq for CatalogOptions

source§

fn eq(&self, other: &CatalogOptions) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for CatalogOptions

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,