All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.livy.rsc.driver.StatementSpyt Maven / Gradle / Ivy

The newest version!
package org.apache.livy.rsc.driver;

import tech.ytsaurus.spyt.patch.annotations.OriginClass;
import tech.ytsaurus.spyt.patch.annotations.Subclass;

@Subclass
@OriginClass("org.apache.livy.rsc.driver.Statement")
public class StatementSpyt extends Statement {
  private QueryPlan plan = null;

  public StatementSpyt(Integer id, String code, StatementState state, String output) {
    super(id, code, state, output);
  }

  public StatementSpyt() {
    super();
  }

  public void setPlan(QueryPlan p) {
    this.plan = p;
  }

  public QueryPlan getPlan() {
    return plan;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy