Sha256: 3a92cf2269fd63e96990cc9ab864654d3dc9a252b9a39662552fe94d808f2566

Contents?: true

Size: 657 Bytes

Versions: 88

Compression:

Stored size: 657 Bytes

Contents

# -*- ruby -*-
# frozen_string_literal: true

module PG
	module BinaryDecoder
		# Convenience classes for timezone options
		class TimestampUtc < Timestamp
			def initialize(params={})
				super(params.merge(flags: PG::Coder::TIMESTAMP_DB_UTC | PG::Coder::TIMESTAMP_APP_UTC))
			end
		end
		class TimestampUtcToLocal < Timestamp
			def initialize(params={})
				super(params.merge(flags: PG::Coder::TIMESTAMP_DB_UTC | PG::Coder::TIMESTAMP_APP_LOCAL))
			end
		end
		class TimestampLocal < Timestamp
			def initialize(params={})
				super(params.merge(flags: PG::Coder::TIMESTAMP_DB_LOCAL | PG::Coder::TIMESTAMP_APP_LOCAL))
			end
		end
	end
end # module PG

Version data entries

88 entries across 88 versions & 4 rubygems

Version Path
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pg-1.4.5/lib/pg/binary_decoder.rb
cipherstash-pg-1.0.0.beta.1-x86_64-darwin-21 ./lib/pg/binary_decoder.rb
cipherstash-pg-1.0.0.beta.1-arm64-darwin-21 ./lib/pg/binary_decoder.rb
cipherstash-pg-1.0.0.beta.1-x86_64-linux ./lib/pg/binary_decoder.rb
cipherstash-pg-1.0.0.beta.1-x86_64-darwin-22 ./lib/pg/binary_decoder.rb
cipherstash-pg-1.0.0.beta.1-arm64-darwin-22 ./lib/pg/binary_decoder.rb
cipherstash-pg-1.0.0.beta.1-aarch64-linux ./lib/pg/binary_decoder.rb
pg-1.4.6-x86-mingw32 lib/pg/binary_decoder.rb
pg-1.4.6-x64-mingw32 lib/pg/binary_decoder.rb
pg-1.4.6-x64-mingw-ucrt lib/pg/binary_decoder.rb
pg-1.4.6 lib/pg/binary_decoder.rb
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pg-1.4.5/lib/pg/binary_decoder.rb
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pg-1.4.5/lib/pg/binary_decoder.rb
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pg-1.4.5/lib/pg/binary_decoder.rb
pg-1.4.5-x86-mingw32 lib/pg/binary_decoder.rb
pg-1.4.5-x64-mingw-ucrt lib/pg/binary_decoder.rb
pg-1.4.5-x64-mingw32 lib/pg/binary_decoder.rb
pg-1.4.5 lib/pg/binary_decoder.rb
pg-1.4.4-x86-mingw32 lib/pg/binary_decoder.rb
pg-1.4.4-x64-mingw32 lib/pg/binary_decoder.rb