(column: string, operator: Operator, value: SqlParam)
| 208 | |
| 209 | // Having methods |
| 210 | having(column: string, operator: Operator, value: SqlParam): this { |
| 211 | const condition = this.buildCondition(column, operator, value); |
| 212 | this._having.push({ condition, operator: 'AND' }); |
| 213 | return this; |
| 214 | } |
| 215 | |
| 216 | rawHaving(condition: string): this { |
| 217 | if (condition) { |
no test coverage detected