We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4496348 commit f5b882cCopy full SHA for f5b882c
src/entity/column/types/with_uuid.rs
@@ -65,16 +65,6 @@ impl<E: EntityTrait> TextUuidColumn<E> {
65
bind_vec_func!(pub is_in, is_in, type TextUuid);
66
bind_vec_func!(pub is_not_in, is_not_in, type TextUuid);
67
68
- /// `= ANY(..)` operator. Postgres only.
69
- #[cfg(feature = "postgres-array")]
70
- pub fn eq_any<V, I>(&self, v: I) -> Expr
71
- where
72
- V: Into<Value> + Into<TextUuid> + sea_query::ValueType + sea_query::with_array::NotU8,
73
- I: IntoIterator<Item = V>,
74
- {
75
- self.0.eq_any(v)
76
- }
77
-
78
bind_subquery_func!(pub in_subquery);
79
bind_subquery_func!(pub not_in_subquery);
80
}
0 commit comments