20 namespace Deveel.Data.Sql.Parser {
40 if (node.
NodeName ==
"from_source") {
42 }
else if (node.
NodeName ==
"join_opt") {
46 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.
override ISqlNode OnChildNode(ISqlNode node)
During the initialization of the node from the parser, this method is called for every child node add...
The node in an SQL query that defines the sources from which to retrieve the data queried...
IEnumerable< ISqlNode > ChildNodes
Gets a read-only enumeration of the children nodes, if any.
Defines the base contract of the source of a query.
A node describing the JOIN between two sources within a query.
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...