Apache GraphAr C++ Library
The C++ Library for Apache GraphAr
|
#include <expression.h>
Public Member Functions | |
ExpressionProperty (const Property &property) | |
ExpressionProperty (const std::string &name) | |
ExpressionProperty (const ExpressionProperty &other)=default | |
Result< ArrowExpression > | Evaluate () override |
Evaluate Expression as arrow::compute::Expression e.g. new ExpressionEqual(new ExpressionProperty("a"), new ExpressionLiteral(1)) will be parsed as arrow::compute::equal(arrow::compute::field_ref("a"), arrow::compute::literal(1)) More... | |
![]() | |
Expression (const Expression &other)=default | |
This class wraps the Property and provides a way to construct property expression
Definition at line 59 of file expression.h.
|
overridevirtual |
Evaluate Expression as arrow::compute::Expression e.g. new ExpressionEqual(new ExpressionProperty("a"), new ExpressionLiteral(1)) will be parsed as arrow::compute::equal(arrow::compute::field_ref("a"), arrow::compute::literal(1))
Implements graphar::Expression.
Definition at line 25 of file expression.cc.