use of org.apache.hadoop.hive.ql.parse.SemanticAnalyzer in project hive by apache.
the class QTestUtil method resetParser.
public void resetParser() throws SemanticException {
drv.init();
pd = new ParseDriver();
queryState = new QueryState(conf);
sem = new SemanticAnalyzer(queryState);
}
use of org.apache.hadoop.hive.ql.parse.SemanticAnalyzer in project phoenix by apache.
the class HiveTestUtil method resetParser.
public void resetParser() throws SemanticException {
pd = new ParseDriver();
sem = new SemanticAnalyzer(conf);
}
Aggregations