Type Alias pgrx_pg_sys::DistinctExpr

source ·
pub type DistinctExpr = OpExpr;

Aliased Type§

struct DistinctExpr {
    pub xpr: Expr,
    pub opno: Oid,
    pub opfuncid: Oid,
    pub opresulttype: Oid,
    pub opretset: bool,
    pub opcollid: Oid,
    pub inputcollid: Oid,
    pub args: *mut List,
    pub location: i32,
}

Fields§

§xpr: Expr§opno: Oid§opfuncid: Oid§opresulttype: Oid§opretset: bool§opcollid: Oid§inputcollid: Oid§args: *mut List§location: i32

Trait Implementations§

source§

impl Clone for OpExpr

source§

fn clone(&self) -> OpExpr

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for OpExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for OpExpr

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for OpExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PgNode for OpExpr

source§

fn display_node(&self) -> String

Format this node Read more
source§

impl Copy for OpExpr