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

net.snowflake.client.core.SFChildResult Maven / Gradle / Ivy

There is a newer version: 3.19.0
Show newest version
package net.snowflake.client.core;

/** Data class to wrap information about child job results */
public class SFChildResult {
  // query id of child query, to look up child result
  String id;
  // statement type of child query, to properly interpret result
  SFStatementType type;

  public SFChildResult(String id, SFStatementType type) {
    this.id = id;
    this.type = type;
  }

  String getId() {
    return id;
  }

  SFStatementType getType() {
    return type;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy