Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmost committed Mar 8, 2024
1 parent 37bf302 commit 0fd2812
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions diesel/src/expression/operators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ pub trait LikeIsAllowedForType<ST>: Backend {}

impl<DB> LikeIsAllowedForType<crate::sql_types::Text> for DB where DB: Backend {}

impl<T, DB> LikeIsAllowedForType<crate::sql_types::Nullable<T>> for DB
where
DB: Backend + LikeIsAllowedForType<T>,
{}
impl<T, DB> LikeIsAllowedForType<crate::sql_types::Nullable<T>> for DB where
DB: Backend + LikeIsAllowedForType<T>
{
}
1 change: 0 additions & 1 deletion diesel_tests/tests/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,6 @@ fn filter_like_nullable_column() {
assert_eq!(expected, data);
}


#[test]
fn filter_subselect_referencing_outer_table() {
use diesel::dsl::exists;
Expand Down

0 comments on commit 0fd2812

Please sign in to comment.