timeplus-io / timeplus-cpp

Timeplus C++ client
Apache License 2.0
1 stars 0 forks source link

Insertion and querying of datetime64 type data by specified precision are not supported #16

Closed Jax-YHH closed 3 months ago

Jax-YHH commented 3 months ago

Need auxiliary functions to help with insertion and querying at specified precision

void ColumnDateTime64::Append(const Int64& value) {
    // TODO: we need a type, which safely represents datetime.
    // The precision of Poco.DateTime is not big enough.
    data_->Append(value);
}