Methods Summary |
---|
public IntoClause | getIntoClause()Retreive this insert statement's into-clause.
return ( IntoClause ) getFirstChild();
|
public SelectClause | getSelectClause()Retreive this insert statement's select-clause.
return ( ( QueryNode ) getIntoClause().getNextSibling() ).getSelectClause();
|
public int | getStatementType()
return HqlSqlTokenTypes.INSERT;
|
public boolean | needsExecutor()
return true;
|
public void | validate()Performs detailed semantic validation on this insert statement tree.
getIntoClause().validateTypes( getSelectClause() );
|