Skip to content

Commit 1f22ea7

Browse files
committed
fix: logical conflicts
1 parent fa6bd01 commit 1f22ea7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ast/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3697,7 +3697,7 @@ impl fmt::Display for SchemaName {
36973697
/// Fulltext search modifiers ([1]).
36983698
///
36993699
/// [1]: https://dev.mysql.com/doc/refman/8.0/en/fulltext-search.html#function_match
3700-
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
3700+
#[derive(Debug, Clone, PartialEq, PartialOrd, Eq, Ord, Hash)]
37013701
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
37023702
pub enum SearchModifier {
37033703
/// `IN NATURAL LANGUAGE MODE`.

src/ast/query.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ pub enum SelectItem {
333333
/// <col_name>
334334
/// | (<col_name>, <col_name>, ...)
335335
/// ```
336-
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
336+
#[derive(Debug, Clone, PartialEq, PartialOrd, Eq, Ord, Hash)]
337337
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
338338
pub enum ExcludeSelectItem {
339339
/// Single column name without parenthesis.

0 commit comments

Comments
 (0)