Class: PG::BinaryDecoder::Timestamp

Inherits:
SimpleDecoder show all
Defined in:
ext/pg_binary_decoder.c

Overview

This is a decoder class for conversion of PostgreSQL binary timestamps to Ruby Time objects.

The following flags can be used to specify timezone interpretation:

  • PG::Coder::TIMESTAMP_DB_UTC : Interpret timestamp as UTC time (default)

  • PG::Coder::TIMESTAMP_DB_LOCAL : Interpret timestamp as local time

  • PG::Coder::TIMESTAMP_APP_UTC : Return timestamp as UTC time (default)

  • PG::Coder::TIMESTAMP_APP_LOCAL : Return timestamp as local time

Example:

deco = PG::BinaryDecoder::Timestamp.new(flags: PG::Coder::TIMESTAMP_DB_UTC | PG::Coder::TIMESTAMP_APP_LOCAL)
deco.decode("\0"*8)  # => 2000-01-01 01:00:00 +0100

Direct Known Subclasses

TimestampLocal, TimestampUtc, TimestampUtcToLocal

Constant Summary

Constants inherited from Coder

Coder::FORMAT_ERROR_MASK, Coder::FORMAT_ERROR_TO_PARTIAL, Coder::FORMAT_ERROR_TO_RAISE, Coder::FORMAT_ERROR_TO_STRING, Coder::TIMESTAMP_APP_LOCAL, Coder::TIMESTAMP_APP_UTC, Coder::TIMESTAMP_DB_LOCAL, Coder::TIMESTAMP_DB_UTC

Instance Attribute Summary

Attributes inherited from Coder

#name

Method Summary

Methods inherited from Coder

#==, #dup, #flags, #flags=, #format, #format=, #initialize, #inspect, #inspect_short, #marshal_dump, #marshal_load, #oid, #oid=, #to_h

Constructor Details

This class inherits a constructor from PG::Coder