|
override ISqlNode | OnChildNode (ISqlNode node) |
| During the initialization of the node from the parser, this method is called for every child node added to ChildNodes More...
|
|
virtual void | OnNodeInit () |
| After the initialization of the node from the parser, this method is invoked to let the specific initialization to occur. More...
|
|
Definition at line 22 of file ValuesInsertNode.cs.
override ISqlNode Deveel.Data.Sql.Parser.ValuesInsertNode.OnChildNode |
( |
ISqlNode |
node | ) |
|
|
inlineprotectedvirtual |
During the initialization of the node from the parser, this method is called for every child node added to ChildNodes
- Parameters
-
node | The node being added to the list of children. |
- Returns
- Returns a normalized version of the child node, or the node itself.
Reimplemented from Deveel.Data.Sql.Parser.SqlNode.
Definition at line 25 of file ValuesInsertNode.cs.
26 if (node.NodeName.Equals(
"insert_tuple")) {
27 Values = node.FindNodes<InsertValueNode>();
30 return base.OnChildNode(node);
IEnumerable< InsertValueNode > Values
IEnumerable<InsertValueNode> Deveel.Data.Sql.Parser.ValuesInsertNode.Values |
|
getprivate set |
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb/Deveel.Data.Sql.Parser/ValuesInsertNode.cs