(ctx Context, paramName string)
| 392 | } |
| 393 | |
| 394 | func (d *SQLiteDialect) RenderBooleanNotEqualsTrue(ctx Context, paramName string) { |
| 395 | ctx.WriteString(`(`) |
| 396 | ctx.AddParam(Param{Name: paramName, Type: "boolean"}) |
| 397 | ctx.WriteString(` IS NOT TRUE)`) |
| 398 | } |
| 399 | |
| 400 | func (d *SQLiteDialect) RenderJSONField(ctx Context, fieldName string, tableAlias string, colName string, isNull bool, isJSON bool) { |
| 401 | // Not used by SQLite in current implementation (handled in columns.go) |
nothing calls this directly
no test coverage detected