Enum sqlparser::ast::ContextModifier
source · pub enum ContextModifier {
None,
Local,
Session,
}Expand description
Optional context modifier for statements that can be or LOCAL, or SESSION.
Variants§
None
No context defined. Each dialect defines the default in this scenario.
Local
LOCAL identifier, usually related to transactional states.
Session
SESSION identifier
Trait Implementations§
source§impl Clone for ContextModifier
impl Clone for ContextModifier
source§fn clone(&self) -> ContextModifier
fn clone(&self) -> ContextModifier
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