Enum sqlparser::ast::CopyLegacyOption
source · pub enum CopyLegacyOption {
Binary,
Delimiter(char),
Null(String),
Csv(Vec<CopyLegacyCsvOption>),
}Expand description
An option in COPY statement before PostgreSQL version 9.0.
Variants§
Binary
BINARY
Delimiter(char)
DELIMITER [ AS ] ‘delimiter_character’
Null(String)
NULL [ AS ] ‘null_string’
Csv(Vec<CopyLegacyCsvOption>)
CSV …
Trait Implementations§
source§impl Clone for CopyLegacyOption
impl Clone for CopyLegacyOption
source§fn clone(&self) -> CopyLegacyOption
fn clone(&self) -> CopyLegacyOption
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 more