The number of child relations this relation has.
(&self)
| 1057 | |
| 1058 | /// The number of child relations this relation has. |
| 1059 | pub fn num_inputs(&self) -> usize { |
| 1060 | let mut count = 0; |
| 1061 | |
| 1062 | self.visit_children(|_| count += 1); |
| 1063 | |
| 1064 | count |
| 1065 | } |
| 1066 | |
| 1067 | /// Constructs a constant collection from specific rows and schema, where |
| 1068 | /// each row will have a multiplicity of one. |
no test coverage detected