20 namespace Deveel.Data.Sql.Parser {
48 public bool Not {
get;
private set; }
53 if (!expressionSeen) {
54 Expression = (IExpressionNode) node;
55 expressionSeen =
true;
56 }
else if (!minValueSeen) {
57 MinValue = (IExpressionNode) node;
60 MaxValue = (IExpressionNode) node;
62 }
else if (node.
NodeName ==
"not_opt") {
66 return base.OnChildNode(node);
Defines the contract for nodes in an AST model for a SQL grammar analysis and parsing.
string NodeName
Gets the name of the node analyzed from the parser.
An SQL BETWEEN expression node that evaluates to true if the Expression given is between MinValue (in...
IEnumerable< ISqlNode > ChildNodes
Gets a read-only enumeration of the children nodes, if any.
override ISqlNode OnChildNode(ISqlNode node)
During the initialization of the node from the parser, this method is called for every child node add...
This interface acts like a marker that indicates if a ISqlNode represents a SQL expression.
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...