We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea46de8 commit e91aa81Copy full SHA for e91aa81
1 file changed
schema/querygen.go
@@ -48,7 +48,7 @@ func (gen QueryGen) Append(b []byte, v any) []byte {
48
case nil:
49
return dialect.AppendNull(b)
50
case bool:
51
- return dialect.AppendBool(b, v)
+ return gen.Dialect().AppendBool(b, v)
52
case int:
53
return strconv.AppendInt(b, int64(v), 10)
54
case int32:
0 commit comments