mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-28 01:44:07 +00:00
fix: logical conflicts
This commit is contained in:
parent
fa6bd01b19
commit
1f22ea74ae
2 changed files with 2 additions and 2 deletions
|
@ -3697,7 +3697,7 @@ impl fmt::Display for SchemaName {
|
||||||
/// Fulltext search modifiers ([1]).
|
/// Fulltext search modifiers ([1]).
|
||||||
///
|
///
|
||||||
/// [1]: https://dev.mysql.com/doc/refman/8.0/en/fulltext-search.html#function_match
|
/// [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))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
pub enum SearchModifier {
|
pub enum SearchModifier {
|
||||||
/// `IN NATURAL LANGUAGE MODE`.
|
/// `IN NATURAL LANGUAGE MODE`.
|
||||||
|
|
|
@ -333,7 +333,7 @@ pub enum SelectItem {
|
||||||
/// <col_name>
|
/// <col_name>
|
||||||
/// | (<col_name>, <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))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
pub enum ExcludeSelectItem {
|
pub enum ExcludeSelectItem {
|
||||||
/// Single column name without parenthesis.
|
/// Single column name without parenthesis.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue