(vecs ...vector.Any)
| 161 | } |
| 162 | |
| 163 | func (n *nestedLoopJoin) makeResult(vecs ...vector.Any) vector.Any { |
| 164 | left, right := vecs[0], vecs[1] |
| 165 | typ := n.rctx.Sctx.MustLookupTypeRecord([]super.Field{ |
| 166 | super.NewField(n.leftAlias, left.Type()), |
| 167 | super.NewField(n.rightAlias, right.Type()), |
| 168 | }) |
| 169 | return vector.NewRecord(typ, []vector.Any{left, right}, left.Len()) |
| 170 | } |
| 171 | |
| 172 | func (n *nestedLoopJoin) makeHitsResult(vec vector.Any, hits *roaring.Bitmap) (vector.Any, bool) { |
| 173 | vecLen := uint64(vec.Len()) |
nothing calls this directly
no test coverage detected