CallExpressionDO

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

Primary key: element_oid: int

schema CallExpressionDO {
  @primary element_oid: int,
  expr_func_oid: int
}

CallExpressionDO::getExprFuncOid

/**
* @brief gets the expr func oid of this element.
* @return int
*/
pub fn getExprFuncOid(self: CallExpressionDO) -> int;

CallExpressionDO::__all__

Data constraint method.

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