Closed scrabsha closed 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.
PartialEq
Value
Enum8
DateTime64
This commit adds the corresponding match arms and actually performs the equality checks.
Thank you
The problem here is similar to what is descibed at #172: the implementation of
PartialEq
forValue
doesn't try to handle theEnum8
andDateTime64
variant.This commit adds the corresponding match arms and actually performs the equality checks.