[][src]Struct postgres_parser::sys::TableSampleClause

#[repr(C)]pub struct TableSampleClause {
    pub type_: NodeTag,
    pub tsmhandler: Oid,
    pub args: *mut List,
    pub repeatable: *mut Expr,
}

TableSampleClause TABLESAMPLE appearing in a transformed FROM clause

Unlike RangeTableSample, this is a subnode of the relevant RangeTblEntry.

Fields

type_: NodeTagtsmhandler: Oidargs: *mut List

OID of the tablesample handler function

repeatable: *mut Expr

tablesample argument expression(s)

Trait Implementations

impl Debug for TableSampleClause[src]

impl Default for TableSampleClause[src]

impl Eq for TableSampleClause[src]

impl Hash for TableSampleClause[src]

impl PartialEq<TableSampleClause> for TableSampleClause[src]

impl StructuralEq for TableSampleClause[src]

impl StructuralPartialEq for TableSampleClause[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.