Method: ClickHouse::Type::DateTime64Type#cast

Defined in:
lib/click_house/type/date_time64_type.rb

#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