pub struct NetezzaSource {
pub tabular_source: TabularSource,
pub query: Option<Value>,
pub partition_option: Option<Value>,
pub partition_settings: Option<NetezzaPartitionSettings>,
}Expand description
A copy activity Netezza source.
Fields§
§tabular_source: TabularSource§query: Option<Value>A query to retrieve data from source. Type: string (or Expression with resultType string).
partition_option: Option<Value>The partition mechanism that will be used for Netezza read in parallel. Possible values include: “None”, “DataSlice”, “DynamicRange”.
partition_settings: Option<NetezzaPartitionSettings>The settings that will be leveraged for Netezza source partitioning.
Implementations§
Source§impl NetezzaSource
impl NetezzaSource
pub fn new(tabular_source: TabularSource) -> Self
Trait Implementations§
Source§impl Clone for NetezzaSource
impl Clone for NetezzaSource
Source§fn clone(&self) -> NetezzaSource
fn clone(&self) -> NetezzaSource
Returns a duplicate 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 NetezzaSource
impl Debug for NetezzaSource
Source§impl<'de> Deserialize<'de> for NetezzaSource
impl<'de> Deserialize<'de> for NetezzaSource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NetezzaSource
impl PartialEq for NetezzaSource
Source§impl Serialize for NetezzaSource
impl Serialize for NetezzaSource
impl StructuralPartialEq for NetezzaSource
Auto Trait Implementations§
impl Freeze for NetezzaSource
impl RefUnwindSafe for NetezzaSource
impl Send for NetezzaSource
impl Sync for NetezzaSource
impl Unpin for NetezzaSource
impl UnwindSafe for NetezzaSource
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