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

Method andHaving

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

Source from the content-addressed store, hash-verified

221 }
222
223 andHaving(column: string, operator: Operator, value: SqlParam): this {
224 const condition = this.buildCondition(column, operator, value);
225 this._having.push({ condition, operator: 'AND' });
226 return this;
227 }
228
229 orHaving(column: string, operator: Operator, value: SqlParam): this {
230 const condition = this.buildCondition(column, operator, value);

Callers

nothing calls this directly

Calls 2

buildConditionMethod · 0.95
pushMethod · 0.45

Tested by

no test coverage detected