PG::BinaryDecoder::

Timestamp class

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