diff --git a/core/src/main/java/com/yahoo/ycsb/RandomByteIterator.java b/core/src/main/java/com/yahoo/ycsb/RandomByteIterator.java index 65db4335035ef22be38f249cc9b6ab7dcb92fe7e..cb0977aa56c8f52f4686d84aaaa23f4f30f160c2 100644 --- a/core/src/main/java/com/yahoo/ycsb/RandomByteIterator.java +++ b/core/src/main/java/com/yahoo/ycsb/RandomByteIterator.java @@ -34,11 +34,11 @@ public class RandomByteIterator extends ByteIterator { int bytes = Utils.random().nextInt(); try { buffer[base+0] = (byte)(((bytes) & 31) + ' '); - buffer[base+1] = (byte)(((bytes >> 5) & 31) + ' '); - buffer[base+2] = (byte)(((bytes >> 10) & 31) + ' '); + buffer[base+1] = (byte)(((bytes >> 5) & 63) + ' '); + buffer[base+2] = (byte)(((bytes >> 10) & 95) + ' '); buffer[base+3] = (byte)(((bytes >> 15) & 31) + ' '); - buffer[base+4] = (byte)(((bytes >> 20) & 31) + ' '); - buffer[base+5] = (byte)(((bytes >> 25) & 31) + ' '); + buffer[base+4] = (byte)(((bytes >> 20) & 63) + ' '); + buffer[base+5] = (byte)(((bytes >> 25) & 95) + ' '); } catch (ArrayIndexOutOfBoundsException e) { /* ignore it */ } }