(ctx Context, paramName string)
| 386 | } |
| 387 | |
| 388 | func (d *SQLiteDialect) RenderBooleanEqualsTrue(ctx Context, paramName string) { |
| 389 | ctx.WriteString(`(`) |
| 390 | ctx.AddParam(Param{Name: paramName, Type: "boolean"}) |
| 391 | ctx.WriteString(` IS TRUE)`) |
| 392 | } |
| 393 | |
| 394 | func (d *SQLiteDialect) RenderBooleanNotEqualsTrue(ctx Context, paramName string) { |
| 395 | ctx.WriteString(`(`) |
nothing calls this directly
no test coverage detected