Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@bednar bednar released this 15 Nov 08:32
· 1 commit to main since this release

Breaking Changes

⚠️ This is a breaking change release.

Previously, the Query API did not respect the metadata type for columns returned from InfluxDB v3. This release fixes this issue. As a result, the type of some columns may differ from previous versions. For example, the timestamp column will now be time.Time instead of arrow.Timestamp.

Features

  1. #114: Query API respects metadata types for columns returned from InfluxDB v3.
    Tags are mapped as a "string", timestamp as "time.Time", and fields as their respective types:
    • iox::column_type::field::integer: => int64
    • iox::column_type::field::uinteger: => uint64
    • iox::column_type::field::float: => float64
    • iox::column_type::field::string: => string
    • iox::column_type::field::boolean: => bool