suharev7 / clickhouse-rs

Asynchronous ClickHouse client library for Rust programming language.
MIT License
324 stars 121 forks source link

Allow for Enum8 and DateTime64 value comparison #173

Closed scrabsha closed 2 years ago

scrabsha commented 2 years ago

The problem here is similar to what is descibed at #172: the implementation of PartialEq for Value doesn't try to handle the Enum8 and DateTime64 variant.

This commit adds the corresponding match arms and actually performs the equality checks.

suharev7 commented 2 years ago

Thank you