Skip to content

Commit

Permalink
Make Error comparable (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
bytedream authored Sep 8, 2023
1 parent 9540e09 commit 86f1b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion influxdb/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use thiserror::Error;

#[derive(Debug, Error)]
#[derive(Debug, Eq, PartialEq, Error)]
pub enum Error {
#[error("query is invalid: {error}")]
/// Error happens when a query is invalid
Expand Down

0 comments on commit 86f1b59

Please sign in to comment.