You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Possible value types#[derive(Debug,Clone,PartialEq)]pubenumFieldValue{/// A true or false valueBool(bool),/// A 64-bit floating point numberF64(f64),/// A 64-bit signed integer numberI64(i64),/// A string valueString(String),}
Is there a plan to support uint64 as specified in the line protocol documentation. Line protocol
As far as I understand this library do not yet support unsigned integers (uint64).
FieldValue – data_point.rs#L147
Is there a plan to support uint64 as specified in the line protocol documentation. Line protocol
The text was updated successfully, but these errors were encountered: