com.clickzetta.platform.client.api.KuduRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
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