TupleExpressionDO

/**
* @brief DO class: A tuple expression.
*/

Primary key: element_oid: int

schema TupleExpressionDO {
  @primary element_oid: int,
  elt_size: int,
  ctx: string
}

TupleExpressionDO::getCtx

/**
* @brief gets the ctx of this element.
* @return string
*/
pub fn getCtx(self: TupleExpressionDO) -> string;

TupleExpressionDO::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *TupleExpressionDO;

TupleExpressionDO::getEltSize

/**
* @brief gets the elt size of this element.
* @return int
*/
pub fn getEltSize(self: TupleExpressionDO) -> int;