#[non_exhaustive]pub enum Queries {
QueryFileUri(String),
QueryList(Box<QueryList>),
}Expand description
Required. The sequence of Spark SQL queries to execute, specified as either an HCFS file URI or as a list of queries.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
QueryFileUri(String)
The HCFS URI of the script that contains SQL queries.
QueryList(Box<QueryList>)
A list of queries.
Trait Implementations§
impl StructuralPartialEq for Queries
Auto Trait Implementations§
impl Freeze for Queries
impl RefUnwindSafe for Queries
impl Send for Queries
impl Sync for Queries
impl Unpin for Queries
impl UnwindSafe for Queries
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