Skip to content

Commit b4bb74c

Browse files
committed
fix
1 parent 88ed818 commit b4bb74c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ormlite.go

+1
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ func queryWithOptions(ctx context.Context, db *sql.DB, table string, columns []s
284284
keys = append(keys, fmt.Sprintf("%s&? > 0", k))
285285
case BitwiseANDStrict:
286286
keys = append(keys, fmt.Sprintf("%s&? = ?", k))
287+
values = append(values, v)
287288
case StrictString:
288289
keys = append(keys, fmt.Sprintf("%s = ?", k))
289290
default:

0 commit comments

Comments
 (0)