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

com.clickzetta.platform.client.api.KuduRow Maven / Gradle / Ivy

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

import com.clickzetta.platform.client.pool.RowReuseSupport;
import com.clickzetta.platform.client.Table;
import com.clickzetta.platform.operator.AbstractRow;
import com.clickzetta.platform.operator.WriteOperation;

public final class KuduRow extends AbstractRow implements RowReuseSupport {

  public KuduRow(Table table, WriteOperation.ChangeType changeType) {
    super(table, changeType);
  }

  private KuduRow() {
    super(null, null);
  }

  public static KuduRow buildReuseRow() {
    return new KuduRow();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy