001package gudusoft.gsqlparser.nodes.couchbase;
002
003
004import gudusoft.gsqlparser.nodes.TExpression;
005import gudusoft.gsqlparser.nodes.TFromTable;
006import gudusoft.gsqlparser.nodes.TParseTreeNode;
007
008public class TInferKeyspaceSqlNode extends TParseTreeNode {
009    private TFromTable keyspaceRef;
010    private TExpression inferWith;
011
012    public void setInferWith(TExpression inferWith) {
013        this.inferWith = inferWith;
014    }
015
016    public TExpression getInferWith() {
017
018        return inferWith;
019    }
020
021    public TFromTable getKeyspaceRef() {
022        return keyspaceRef;
023    }
024
025    public void init(Object arg1){
026        keyspaceRef = (TFromTable)arg1;
027
028    }
029}