Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion client/src/com/aerospike/client/Operation.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ public static enum Type {
BIT_MODIFY(13, true),
DELETE(14, true),
HLL_READ(15, false),
HLL_MODIFY(16, true);
HLL_MODIFY(16, true),
STRING_READ(17, false),
STRING_MODIFY(18, true),
TO_STRING(19, false);

public final int protocolType;
public final boolean isWrite;
Expand Down
2 changes: 2 additions & 0 deletions client/src/com/aerospike/client/command/OperateArgs.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ public OperateArgs(
// Fall through to read.
case CDT_READ:
case READ:
case STRING_READ:
case TO_STRING:
rattr |= Command.INFO1_READ;

// Read all bins if no bin is specified.
Expand Down
Loading
Loading