( left: StringLike, right: StringLike, )
| 272 | } |
| 273 | |
| 274 | export function ilike( |
| 275 | left: StringLike, |
| 276 | right: StringLike, |
| 277 | ): BasicExpression<boolean> { |
| 278 | return new Func(`ilike`, [toExpression(left), toExpression(right)]) |
| 279 | } |
| 280 | |
| 281 | // Functions |
| 282 |
no test coverage detected