Skip to content

Commit c53abfb

Browse files
committed
chore: codefmt
1 parent dda78fa commit c53abfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/query/ast/src/ast/common.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use crate::ast::WithOptions;
2525
use crate::Span;
2626

2727
// Identifier of table name or column name.
28-
#[derive(Debug, Clone, PartialEq, Eq, Ord, PartialOrd, Drive, DriveMut)]
28+
#[derive(Debug, Clone, PartialEq, Eq, Drive, DriveMut)]
2929
pub struct Identifier {
3030
pub span: Span,
3131
pub name: String,
@@ -34,7 +34,7 @@ pub struct Identifier {
3434
pub ident_type: IdentifierType,
3535
}
3636

37-
#[derive(Debug, Copy, Clone, PartialEq, Eq, Ord, PartialOrd, Default)]
37+
#[derive(Debug, Copy, Clone, PartialEq, Eq, Default)]
3838
pub enum IdentifierType {
3939
#[default]
4040
None,

0 commit comments

Comments
 (0)