]> source.dussan.org Git - jackcess.git/commitdiff
add some prefix compression
authorJames Ahlborn <jtahlborn@yahoo.com>
Tue, 29 Apr 2008 19:11:55 +0000 (19:11 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Tue, 29 Apr 2008 19:11:55 +0000 (19:11 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@350 f203690c-595d-4dc9-a70b-905162fa7fd2

test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java

index 4e8e3394b4c4f7a4587dc4b2aa5fc31c9b1044a4..628fc05f55318d5e5b557d255981fa9a7f1574f2 100644 (file)
@@ -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;
         }