Performs inner Join with the newStream. SQL: from priorStream inner join newStream on newStream.field = priorStream.field1 same as: new WindowedQueryBolt(priorStream,field1). join(newStream, field, priorStream); Note: priorStream must be previously joined. Valid ex: n
(String newStream, String field, String priorStream)
| 87 | * @param field the field on which to perform the join |
| 88 | */ |
| 89 | public JoinBolt join(String newStream, String field, String priorStream) { |
| 90 | return joinCommon(newStream, field, priorStream, JoinType.INNER); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Performs left Join with the newStream. SQL : from stream1 left join stream2 on stream2.field = stream1.field1 same as: new |
no test coverage detected