Class: ClickHouse::Type::DateTime64Type

Inherits:
BaseType
  • Object
show all
Defined in:
lib/click_house/type/date_time64_type.rb

Instance Method Summary collapse

Instance Method Details

#cast(value, _precision = nil, tz = nil) ⇒ Object



6
7
8
# File 'lib/click_house/type/date_time64_type.rb', line 6

def cast(value, _precision = nil, tz = nil)
  DateTime.parse("#{value} #{tz}")
end

#serialize(value, precision = 3) ⇒ Object



10
11
12
# File 'lib/click_house/type/date_time64_type.rb', line 10

def serialize(value, precision = 3)
  value.strftime("%Y-%m-%d %H:%M:%S.%#{precision}N")
end