(&self, expr: &E)
| 6718 | } |
| 6719 | |
| 6720 | pub fn column_type<E>(&self, expr: &E) -> E::Type |
| 6721 | where |
| 6722 | E: AbstractExpr, |
| 6723 | { |
| 6724 | expr.typ( |
| 6725 | &self.qcx.outer_relation_types, |
| 6726 | self.relation_type, |
| 6727 | &self.qcx.scx.param_types.borrow(), |
| 6728 | ) |
| 6729 | } |
| 6730 | |
| 6731 | pub fn scalar_type<E>(&self, expr: &E) -> <E::Type as AbstractColumnType>::AbstractScalarType |
| 6732 | where |
no test coverage detected