io.trino.plugin.kudu.RowHelper Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.trino.plugin.kudu;
import org.apache.kudu.Schema;
import org.apache.kudu.client.PartialRow;
import org.apache.kudu.client.RowResult;
import java.nio.charset.StandardCharsets;
public final class RowHelper
{
private RowHelper() {}
public static void copyPrimaryKey(Schema schema, RowResult from, PartialRow to)
{
for (int i = 0; i < schema.getPrimaryKeyColumnCount(); i++) {
switch (schema.getColumnByIndex(i).getType()) {
case STRING:
to.addStringUtf8(i, from.getString(i).getBytes(StandardCharsets.UTF_8));
break;
case INT64:
case UNIXTIME_MICROS:
to.addLong(i, from.getLong(i));
break;
case INT32:
to.addInt(i, from.getInt(i));
break;
case INT16:
to.addShort(i, from.getShort(i));
break;
case INT8:
to.addByte(i, from.getByte(i));
break;
case DOUBLE:
to.addDouble(i, from.getDouble(i));
break;
case FLOAT:
to.addFloat(i, from.getFloat(i));
break;
case DECIMAL:
to.addDecimal(i, from.getDecimal(i));
break;
case BOOL:
to.addBoolean(i, from.getBoolean(i));
break;
case BINARY:
to.addBinary(i, from.getBinary(i));
break;
default:
throw new IllegalStateException("Unknown type " + schema.getColumnByIndex(i).getType()
+ " for column " + schema.getColumnByIndex(i).getName());
}
}
}
public static void copyPrimaryKey(Schema schema, PartialRow from, PartialRow to)
{
for (int i = 0; i < schema.getPrimaryKeyColumnCount(); i++) {
switch (schema.getColumnByIndex(i).getType()) {
case STRING:
to.addStringUtf8(i, from.getString(i).getBytes(StandardCharsets.UTF_8));
break;
case INT64:
case UNIXTIME_MICROS:
to.addLong(i, from.getLong(i));
break;
case INT32:
to.addInt(i, from.getInt(i));
break;
case INT16:
to.addShort(i, from.getShort(i));
break;
case INT8:
to.addByte(i, from.getByte(i));
break;
case DOUBLE:
to.addDouble(i, from.getDouble(i));
break;
case FLOAT:
to.addFloat(i, from.getFloat(i));
break;
case DECIMAL:
to.addDecimal(i, from.getDecimal(i));
break;
case BOOL:
to.addBoolean(i, from.getBoolean(i));
break;
case BINARY:
to.addBinary(i, from.getBinary(i));
break;
default:
throw new IllegalStateException("Unknown type " + schema.getColumnByIndex(i).getType()
+ " for column " + schema.getColumnByIndex(i).getName());
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy