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

com.clickzetta.platform.bulkload.BulkLoadCommitMode Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.clickzetta.platform.bulkload;

public enum BulkLoadCommitMode {
  // Commit the stream, and all the files written will be copied to the target table.
  // A bulk load stream can only be committed once.
  COMMIT_STREAM("COMMIT_STREAM"),
  // Abort the stream. The stream cannot be committed after abort and is discarded.
  ABORT_STREAM("ABORT_STREAM");

  private String mode;

  BulkLoadCommitMode(String mode) {
    this.mode = mode;
  }

  public String getMode() {
    return mode;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy