(
rhs: QueryExp,
on: string | Array<string>,
joinType: JoinType = "LeftOuter"
)
| 146 | |
| 147 | // join to another QueryExp |
| 148 | join( |
| 149 | rhs: QueryExp, |
| 150 | on: string | Array<string>, |
| 151 | joinType: JoinType = "LeftOuter" |
| 152 | ): QueryExp { |
| 153 | return new QueryExp({ |
| 154 | operator: "join", |
| 155 | joinType, |
| 156 | on, |
| 157 | rhs: rhs._rep, |
| 158 | lhs: this._rep, |
| 159 | }); |
| 160 | } |
| 161 | |
| 162 | // distinct values of a column |
| 163 | // just a degenerate groupBy: |
no outgoing calls
no test coverage detected