001package gudusoft.gsqlparser.stmt.sparksql; 002 003import gudusoft.gsqlparser.EDbVendor; 004import gudusoft.gsqlparser.ESqlStatementType; 005import gudusoft.gsqlparser.TCustomSqlStatement; 006import gudusoft.gsqlparser.nodes.TParseTreeVisitor; 007 008public class TResourceManagement extends TCustomSqlStatement { 009 010 public TResourceManagement(EDbVendor dbvendor) { 011 super(dbvendor); 012 sqlstatementtype = ESqlStatementType.sstResourceManagement; 013 } 014 015 public int doParseStatement(TCustomSqlStatement psql) { 016 if (rootNode == null) return -1; 017 super.doParseStatement(psql); 018 019 020 return 0; 021 } 022 023 public void accept(TParseTreeVisitor v){ 024 v.preVisit(this); 025 v.postVisit(this); 026 } 027 028 public void acceptChildren(TParseTreeVisitor v){ 029 v.preVisit(this); 030 v.postVisit(this); 031 } 032 033 034}