MCPcopy Create free account
hub / github.com/Openpanel-dev/openpanel / orHaving

Method orHaving

packages/db/src/clickhouse/query-builder.ts:229–233  ·  view source on GitHub ↗
(column: string, operator: Operator, value: SqlParam)

Source from the content-addressed store, hash-verified

227 }
228
229 orHaving(column: string, operator: Operator, value: SqlParam): this {
230 const condition = this.buildCondition(column, operator, value);
231 this._having.push({ condition, operator: 'OR' });
232 return this;
233 }
234
235 // Order by methods
236 orderBy(column: string, direction: 'ASC' | 'DESC' = 'ASC'): this {

Callers

nothing calls this directly

Calls 2

buildConditionMethod · 0.95
pushMethod · 0.45

Tested by

no test coverage detected