Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support of unsigned integers u64 #67

Open
GeorgFritze opened this issue Aug 5, 2024 · 0 comments
Open

Support of unsigned integers u64 #67

GeorgFritze opened this issue Aug 5, 2024 · 0 comments

Comments

@GeorgFritze
Copy link

As far as I understand this library do not yet support unsigned integers (uint64).
FieldValue – data_point.rs#L147

/// Possible value types
#[derive(Debug, Clone, PartialEq)]
pub enum FieldValue {
    /// A true or false value
    Bool(bool),
    /// A 64-bit floating point number
    F64(f64),
    /// A 64-bit signed integer number
    I64(i64),
    /// A string value
    String(String),
}

Is there a plan to support uint64 as specified in the line protocol documentation. Line protocol

myMeasurement fieldKey=1u
myMeasurement fieldKey=12485903u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant