fix formatting

This commit is contained in:
alpaylan 2024-12-16 10:49:56 -05:00
parent be18c6e8f0
commit 53ecedaceb
8 changed files with 79 additions and 31 deletions

View file

@ -2,7 +2,6 @@ use std::fmt::Display;
use crate::model::table::{Table, Value};
#[derive(Clone, Debug, PartialEq)]
pub(crate) enum Predicate {
And(Vec<Predicate>), // p1 AND p2 AND p3... AND pn
@ -108,4 +107,3 @@ impl Display for Query {
}
}
}

View file

@ -1,4 +1,3 @@
use std::{fmt::Display, ops::Deref};
pub(crate) struct Name(pub(crate) String);
@ -88,4 +87,3 @@ impl Display for Value {
}
}
}