Class: Fluent::BigQuery::TimeFieldSchema
Instance Attribute Summary
Attributes inherited from FieldSchema
#mode, #name
Instance Method Summary
collapse
Methods inherited from FieldSchema
#format, #initialize, #to_h
Instance Method Details
198
199
200
201
202
203
204
|
# File 'lib/fluent/plugin/bigquery/schema.rb', line 198
def format_one(value, is_load: false)
if value.respond_to?(:strftime)
value.strftime("%H:%M:%S.%6L")
else
value
end
end
|
#type ⇒ Object
194
195
196
|
# File 'lib/fluent/plugin/bigquery/schema.rb', line 194
def type
:time
end
|