Struct datafusion_sql::parser::CopyToStatement
source · pub struct CopyToStatement {
pub source: CopyToSource,
pub target: String,
pub partitioned_by: Vec<String>,
pub has_header: bool,
pub stored_as: Option<String>,
pub options: Vec<(String, Value)>,
}Expand description
DataFusion extension DDL for COPY
§Syntax:
COPY <table_name | (<query>)>
TO
<destination_url>
(key_value_list)
§Examples
COPY lineitem TO 'lineitem'
(format parquet,
partitions 16,
row_group_limit_rows 100000,
row_group_limit_bytes 200000
)
COPY (SELECT l_orderkey from lineitem) to 'lineitem.parquet';
Fields§
§source: CopyToSourceFrom where the data comes from
target: StringThe URL to where the data is heading
partitioned_by: Vec<String>Partition keys
has_header: boolIndicates whether there is a header row (e.g. CSV)
stored_as: Option<String>File type (Parquet, NDJSON, CSV etc.)
options: Vec<(String, Value)>Target specific options
Trait Implementations§
source§impl Clone for CopyToStatement
impl Clone for CopyToStatement
source§fn clone(&self) -> CopyToStatement
fn clone(&self) -> CopyToStatement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CopyToStatement
impl Debug for CopyToStatement
source§impl Display for CopyToStatement
impl Display for CopyToStatement
source§impl PartialEq for CopyToStatement
impl PartialEq for CopyToStatement
source§fn eq(&self, other: &CopyToStatement) -> bool
fn eq(&self, other: &CopyToStatement) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for CopyToStatement
impl StructuralPartialEq for CopyToStatement
Auto Trait Implementations§
impl Freeze for CopyToStatement
impl RefUnwindSafe for CopyToStatement
impl Send for CopyToStatement
impl Sync for CopyToStatement
impl Unpin for CopyToStatement
impl UnwindSafe for CopyToStatement
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.