MCPcopy
hub / github.com/antonycourtney/tad / join

Method join

packages/reltab/src/QueryExp.ts:148–160  ·  view source on GitHub ↗
(
    rhs: QueryExp,
    on: string | Array<string>,
    joinType: JoinType = "LeftOuter"
  )

Source from the content-addressed store, hash-verified

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:

Callers 15

mainFunction · 0.80
mkColIdFunction · 0.80
importDataFunction · 0.80
fastImportFunction · 0.80
aggtree.test.tsFile · 0.80
encodePathFunction · 0.80
getSortedTreeQueryMethod · 0.80
basic.test.tsFile · 0.80
textOpToSqlWhereFunction · 0.80
toSqlWhereMethod · 0.80
sqlEscapeStringFunction · 0.80
toJSMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected