fmt: fix alignment of enumeration types (#21999)

This commit is contained in:
yuyi 2024-08-07 20:46:50 +08:00 committed by GitHub
parent 3247b98bb5
commit 79ee4ae046
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
51 changed files with 543 additions and 479 deletions

View file

@ -56,15 +56,15 @@ pub type Primitive = InfixType
pub struct Null {}
pub enum OperationKind {
neq // !=
eq // ==
gt // >
lt // <
ge // >=
le // <=
orm_like // LIKE
orm_ilike // ILIKE
is_null // IS NULL
neq // !=
eq // ==
gt // >
lt // <
ge // >=
le // <=
orm_like // LIKE
orm_ilike // ILIKE
is_null // IS NULL
is_not_null // IS NOT NULL
}