fix: logical conflicts

This commit is contained in:
Andrew Lamb 2022-11-30 12:55:55 -05:00
parent fa6bd01b19
commit 1f22ea74ae
2 changed files with 2 additions and 2 deletions

View file

@ -3697,7 +3697,7 @@ impl fmt::Display for SchemaName {
/// Fulltext search modifiers ([1]).
///
/// [1]: https://dev.mysql.com/doc/refman/8.0/en/fulltext-search.html#function_match
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
#[derive(Debug, Clone, PartialEq, PartialOrd, Eq, Ord, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum SearchModifier {
/// `IN NATURAL LANGUAGE MODE`.

View file

@ -333,7 +333,7 @@ pub enum SelectItem {
/// <col_name>
/// | (<col_name>, <col_name>, ...)
/// ```
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
#[derive(Debug, Clone, PartialEq, PartialOrd, Eq, Ord, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum ExcludeSelectItem {
/// Single column name without parenthesis.