
parquet.org.codehaus.jackson.map.deser.std.TimestampDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-apache Show documentation
Show all versions of hive-apache Show documentation
Shaded version of Apache Hive for Presto
package com.facebook.presto.hive.$internal.org.codehaus.jackson.map.deser.std;
import java.io.IOException;
import java.sql.Timestamp;
import com.facebook.presto.hive.$internal.org.codehaus.jackson.JsonProcessingException;
import com.facebook.presto.hive.$internal.org.codehaus.jackson.JsonParser;
import com.facebook.presto.hive.$internal.org.codehaus.jackson.map.DeserializationContext;
/**
* Simple deserializer for handling {@link java.sql.Timestamp} values.
*
* One way to customize Timestamp formats accepted is to override method
* {@link DeserializationContext#parseDate} that this basic
* deserializer calls.
*
* @since 1.9 (moved from higher-level package)
*/
public class TimestampDeserializer
extends StdScalarDeserializer
{
public TimestampDeserializer() { super(Timestamp.class); }
@Override
public java.sql.Timestamp deserialize(JsonParser jp, DeserializationContext ctxt)
throws IOException, JsonProcessingException
{
return new Timestamp(_parseDate(jp, ctxt).getTime());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy