Search in sources :

Example 1 with DateColumnReader

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

the class TestAbstractNumbericColumnReader method testTypeCoercionDate.

@Test
public void testTypeCoercionDate() 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.DATE, new OrcDataSourceId("hdfs://hacluster/user/hive/warehouse/tpcds_orc_hive_1000.db/catalog_sales/cs_sold_date_sk=2452268/000896_0"), ImmutableList.of());
    ColumnReader actualDateColumnReader = ColumnReaders.createColumnReader(type, column, AggregatedMemoryContext.newSimpleAggregatedMemoryContext(), null);
    DateColumnReader expectedDateColumnReader = new DateColumnReader(type, column, AggregatedMemoryContext.newSimpleAggregatedMemoryContext().newLocalMemoryContext(ColumnReaders.class.getSimpleName()));
    assertEquals(actualDateColumnReader.toString(), expectedDateColumnReader.toString());
}
Also used : OrcColumnId(io.prestosql.orc.metadata.OrcColumnId) DateColumnReader(io.prestosql.orc.reader.DateColumnReader) 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