(row: &mut BindingRow, binding: &NodeBinding, csr: &CsrIndex, node_id: u32)
| 303 | } |
| 304 | |
| 305 | fn bind_node(row: &mut BindingRow, binding: &NodeBinding, csr: &CsrIndex, node_id: u32) { |
| 306 | if let Some(ref name) = binding.name { |
| 307 | row.entry(name.clone()) |
| 308 | .or_insert_with(|| csr.node_name_raw(node_id).to_string()); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | /// LEFT JOIN: merge clause results with existing rows. |
| 313 | fn left_join_rows( |
no test coverage detected