module Presto::Decoder
Extended Modules
Defined in:
presto/decoder.crConstant Summary
-
TYPE_CONVERSION =
{"boolean" => BoolDecoder, "tinyint" => Int32Decoder, "smallint" => Int32Decoder, "integer" => Int32Decoder, "bigint" => Int64Decoder, "real" => Float32Decoder, "double" => Float64Decoder, "varchar" => StringDecoder, "char" => StringDecoder, "varbinary" => StringDecoder, "json" => JsonDecoder, "date" => DateDecoder, "time" => TimeDecoder, "time with time zone" => TimeWithZoneDecoder, "timestamp" => TimestampDecoder, "timestamp with time zone" => TimestampWithTimeZoneDecoder, "interval year to month" => IntervalYearToMonthDecoder, "interval day to second" => IntervalDayToSecondDecoder}