(column: string, operator: Operator, value: SqlParam)
| 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); |
nothing calls this directly
no test coverage detected