taco-db  0.1.0
Public Member Functions | Static Public Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes | Friends | List of all members
taco::SysTable_Operator Class Reference

SysTable_Operator is an in-memory cached record in the system catalog SysTable_Operator. More...

#include <catalog/systables/Operator.h>

Public Member Functions

constexpr uint8_t optype () const
 Returns the type of the operator, see expr/optypes.h. More...
 
constexpr Oid opfuncid () const
 Returns the function ID. More...
 
constexpr Oid oparg0typid () const
 Returns the type id of the operand 0. More...
 
constexpr Oid oparg1typid () const
 Returns the type id of the operand 1. More...
 

Static Public Member Functions

static constexpr FieldId optype_colid ()
 
static constexpr FieldId opfuncid_colid ()
 
static constexpr FieldId oparg0typid_colid ()
 
static constexpr FieldId oparg1typid_colid ()
 

Private Member Functions

 SysTable_Operator (uint8_t optype, Oid opfuncid, Oid oparg0typid, Oid oparg1typid)
 
std::vector< DatumGetDatumVector () const
 Returns all the fields as a datum vector. More...
 
 SysTable_Operator (const SysTable_Operator &)=default
 
SysTable_Operatoroperator= (const SysTable_Operator &)=default
 

Static Private Member Functions

static SysTable_OperatorCreate (const std::vector< Datum > &)
 Creates a new SysTable_Operator with a data vector read from some record payload. More...
 

Private Attributes

uint8_t m_optype
 
Oid m_opfuncid
 
Oid m_oparg0typid
 
Oid m_oparg1typid
 

Friends

class BootstrapCatCache
 
class CatCacheInternalAccess
 

Detailed Description

SysTable_Operator is an in-memory cached record in the system catalog SysTable_Operator.

Constructor & Destructor Documentation

◆ SysTable_Operator() [1/2]

taco::SysTable_Operator::SysTable_Operator ( uint8_t  optype,
Oid  opfuncid,
Oid  oparg0typid,
Oid  oparg1typid 
)
inlineprivate

◆ SysTable_Operator() [2/2]

taco::SysTable_Operator::SysTable_Operator ( const SysTable_Operator )
privatedefault

Member Function Documentation

◆ Create()

SysTable_Operator * taco::SysTable_Operator::Create ( const std::vector< Datum > &  data)
staticprivate

Creates a new SysTable_Operator with a data vector read from some record payload.

This function is private and only accessible to the catalog cache implementation.

◆ GetDatumVector()

std::vector< Datum > taco::SysTable_Operator::GetDatumVector ( ) const
private

Returns all the fields as a datum vector.

Note that the entry itself must be kept alive when the datum vector is accessed, as we may return references without copying the underlying data. This function is private and only accessible to the catalog cache implementation.

◆ oparg0typid()

constexpr Oid taco::SysTable_Operator::oparg0typid ( ) const
inlineconstexpr

Returns the type id of the operand 0.

◆ oparg0typid_colid()

static constexpr FieldId taco::SysTable_Operator::oparg0typid_colid ( )
inlinestaticconstexpr

◆ oparg1typid()

constexpr Oid taco::SysTable_Operator::oparg1typid ( ) const
inlineconstexpr

Returns the type id of the operand 1.

◆ oparg1typid_colid()

static constexpr FieldId taco::SysTable_Operator::oparg1typid_colid ( )
inlinestaticconstexpr

◆ operator=()

SysTable_Operator& taco::SysTable_Operator::operator= ( const SysTable_Operator )
privatedefault

◆ opfuncid()

constexpr Oid taco::SysTable_Operator::opfuncid ( ) const
inlineconstexpr

Returns the function ID.

◆ opfuncid_colid()

static constexpr FieldId taco::SysTable_Operator::opfuncid_colid ( )
inlinestaticconstexpr

◆ optype()

constexpr uint8_t taco::SysTable_Operator::optype ( ) const
inlineconstexpr

Returns the type of the operator, see expr/optypes.h.

◆ optype_colid()

static constexpr FieldId taco::SysTable_Operator::optype_colid ( )
inlinestaticconstexpr

Friends And Related Function Documentation

◆ BootstrapCatCache

friend class BootstrapCatCache
friend

◆ CatCacheInternalAccess

friend class CatCacheInternalAccess
friend

Member Data Documentation

◆ m_oparg0typid

Oid taco::SysTable_Operator::m_oparg0typid
private

◆ m_oparg1typid

Oid taco::SysTable_Operator::m_oparg1typid
private

◆ m_opfuncid

Oid taco::SysTable_Operator::m_opfuncid
private

◆ m_optype

uint8_t taco::SysTable_Operator::m_optype
private

The documentation for this class was generated from the following files: