18 using System.Collections.Generic;
23 namespace Deveel.Data.Sql.Parser {
25 public IEnumerable<string> ViewNames {
get;
private set; }
27 public bool IfExists {
get;
private set; }
30 ViewNames = this.FindNodes<ObjectNameNode>().Select(x => x.Name);
31 var ifExistsOpt = this.FindByName(
"if_exists_opt");
32 if (ifExistsOpt != null && ifExistsOpt.ChildNodes.Any())
ICollection< IStatement > Statements
override void BuildStatement(StatementBuilder builder)
override void OnNodeInit()
After the initialization of the node from the parser, this method is invoked to let the specific init...