From: James Ahlborn Date: Tue, 29 Apr 2008 19:11:55 +0000 (+0000) Subject: add some prefix compression X-Git-Tag: rel_1_1_15~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=49f828416c65b26d8dd348266ff2ca83f2e16e98;p=jackcess.git add some prefix compression git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@350 f203690c-595d-4dc9-a70b-905162fa7fd2 --- diff --git a/test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java b/test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java index 4e8e339..628fc05 100644 --- a/test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java +++ b/test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java @@ -198,7 +198,7 @@ public class BigIndexTest extends TestCase { rand = new Random(42L); for(int i = 0; i < 50; ++i) { int nextInt = rand.nextInt(Integer.MAX_VALUE); - String nextVal = "" + nextInt + extraText; + String nextVal = "some prefix " + nextInt + extraText; if(((i + 1) % 3333) == 0) { nextVal = null; }