blob: b00cf729ad90d68c85ee3c221faf94d771a272d4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.cassandra.spark.data.types;
import java.util.Comparator;
import org.apache.cassandra.bridge.BigNumberConfig;
import org.apache.cassandra.cql3.functions.types.SettableByIndexData;
import org.apache.cassandra.db.marshal.AbstractType;
import org.apache.cassandra.db.marshal.ByteType;
import org.apache.cassandra.spark.data.NativeType;
import org.apache.cassandra.spark.utils.RandomUtils;
import org.apache.spark.sql.Row;
import org.apache.spark.sql.catalyst.expressions.GenericInternalRow;
import org.apache.spark.sql.types.DataType;
import org.apache.spark.sql.types.DataTypes;
public class TinyInt extends NativeType
{
public static final TinyInt INSTANCE = new TinyInt();
private static final Comparator<Byte> BYTE_COMPARATOR = TinyInt::compareBytes;
private static int compareBytes(byte first, byte second)
{
return first - second; // Safe because of the range being restricted
}
@Override
public String name()
{
return "tinyint";
}
@Override
public DataType sparkSqlType(BigNumberConfig bigNumberConfig)
{
return DataTypes.ByteType;
}
@Override
public AbstractType<?> dataType()
{
return ByteType.instance;
}
@Override
protected int compareTo(Object first, Object second)
{
return BYTE_COMPARATOR.compare((Byte) first, (Byte) second);
}
@Override
protected Object nativeSparkSqlRowValue(GenericInternalRow row, int position)
{
return row.getByte(position);
}
@Override
protected Object nativeSparkSqlRowValue(Row row, int position)
{
return row.getByte(position);
}
@Override
public Object randomValue(int minCollectionSize)
{
return RandomUtils.randomBytes(1)[0];
}
@Override
public void setInnerValue(SettableByIndexData<?> udtValue, int position, Object value)
{
udtValue.setByte(position, (byte) value);
}
@Override
public org.apache.cassandra.cql3.functions.types.DataType driverDataType(boolean isFrozen)
{
return org.apache.cassandra.cql3.functions.types.DataType.tinyint();
}
}