MCPcopy
hub / github.com/dosco/graphjin / RenderBooleanNotEqualsTrue

Method RenderBooleanNotEqualsTrue

core/internal/dialect/sqlite.go:394–398  ·  view source on GitHub ↗
(ctx Context, paramName string)

Source from the content-addressed store, hash-verified

392}
393
394func (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
400func (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)

Callers

nothing calls this directly

Calls 2

WriteStringMethod · 0.65
AddParamMethod · 0.65

Tested by

no test coverage detected