Represents a single `col [not]in literal` expression
| 430 | |
| 431 | /// Represents a single `col [not]in literal` expression |
| 432 | struct ColInList<'a> { |
| 433 | col: &'a crate::expressions::Column, |
| 434 | guarantee: Guarantee, |
| 435 | list: Vec<&'a crate::expressions::Literal>, |
| 436 | } |
| 437 | |
| 438 | impl<'a> ColInList<'a> { |
| 439 | /// Returns Some(ColInList) if the expression is either: |
no outgoing calls
no test coverage detected
searching dependent graphs…