Skip to content

Commit

Permalink
CLIENT-2455 Default Value.UseBoolBin to true. If true, the boolean (i…
Browse files Browse the repository at this point in the history
…nstead of integer) data type will be used on writes of boolean bins.
  • Loading branch information
BrianNichols committed Jul 25, 2023
1 parent 8251537 commit f15bfa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/com/aerospike/client/Value.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public abstract class Value {
* versions less than 5.6 which do not support boolean bins. Can set to true for
* server 5.6+.
*/
public static boolean UseBoolBin = false;
public static boolean UseBoolBin = true;

/**
* Should default object serializer be disabled. If true, an exception will be thrown when
Expand Down

0 comments on commit f15bfa1

Please sign in to comment.