Search in sources :

Example 1 with ShortColumnReader

use of io.prestosql.orc.reader.ShortColumnReader in project hetu-core by openlookeng.

the class TestAbstractNumbericColumnReader method testTypeCoercionShort.

@Test
public void testTypeCoercionShort() throws OrcCorruptionException {
    OrcColumn column = new OrcColumn("hdfs://hacluster/user/hive/warehouse/tpcds_orc_hive_1000.db/catalog_sales/cs_sold_date_sk=2452268/000896_0", new OrcColumnId(3), "cs_order_number", OrcType.OrcTypeKind.SHORT, new OrcDataSourceId("hdfs://hacluster/user/hive/warehouse/tpcds_orc_hive_1000.db/catalog_sales/cs_sold_date_sk=2452268/000896_0"), ImmutableList.of());
    ColumnReader actualShortColumnReader = ColumnReaders.createColumnReader(type, column, AggregatedMemoryContext.newSimpleAggregatedMemoryContext(), null);
    ShortColumnReader expectedShortColumnReader = new ShortColumnReader(type, column, AggregatedMemoryContext.newSimpleAggregatedMemoryContext().newLocalMemoryContext(ColumnReaders.class.getSimpleName()));
    assertEquals(actualShortColumnReader.toString(), expectedShortColumnReader.toString());
}
Also used : OrcColumnId(io.prestosql.orc.metadata.OrcColumnId) ShortColumnReader(io.prestosql.orc.reader.ShortColumnReader) ShortColumnReader(io.prestosql.orc.reader.ShortColumnReader) DateColumnReader(io.prestosql.orc.reader.DateColumnReader) LongColumnReader(io.prestosql.orc.reader.LongColumnReader) ColumnReader(io.prestosql.orc.reader.ColumnReader) IntegerColumnReader(io.prestosql.orc.reader.IntegerColumnReader) Test(org.testng.annotations.Test)

Aggregations

OrcColumnId (io.prestosql.orc.metadata.OrcColumnId)1 ColumnReader (io.prestosql.orc.reader.ColumnReader)1 DateColumnReader (io.prestosql.orc.reader.DateColumnReader)1 IntegerColumnReader (io.prestosql.orc.reader.IntegerColumnReader)1 LongColumnReader (io.prestosql.orc.reader.LongColumnReader)1 ShortColumnReader (io.prestosql.orc.reader.ShortColumnReader)1 Test (org.testng.annotations.Test)1