Enum sqlparser::ast::CopyLegacyCsvOption
source · pub enum CopyLegacyCsvOption {
Header,
Quote(char),
Escape(char),
ForceQuote(Vec<Ident>),
ForceNotNull(Vec<Ident>),
}Expand description
A CSV option in COPY statement before PostgreSQL version 9.0.
Variants§
Header
HEADER
Quote(char)
QUOTE [ AS ] ‘quote_character’
Escape(char)
ESCAPE [ AS ] ‘escape_character’
ForceQuote(Vec<Ident>)
FORCE QUOTE { column_name [, …] | * }
ForceNotNull(Vec<Ident>)
FORCE NOT NULL column_name [, …]
Trait Implementations§
source§impl Clone for CopyLegacyCsvOption
impl Clone for CopyLegacyCsvOption
source§fn clone(&self) -> CopyLegacyCsvOption
fn clone(&self) -> CopyLegacyCsvOption
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