Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions client/src/com/aerospike/client/exp/BitExp.java
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,7 @@ public static Exp count(Exp bitOffset, Exp bitSize, Exp bin) {
* @param bin bin or blob value expression
*/
public static Exp lscan(Exp bitOffset, Exp bitSize, Exp value, Exp bin) {
byte[] bytes = Pack.pack(LSCAN, bitOffset, bitSize, value);
return addRead(bin, bytes, Exp.Type.INT);
return addRead(bin, Pack.pack(LSCAN, bitOffset, bitSize, value), Exp.Type.INT);
}

/**
Expand Down