diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2008-04-29 19:11:55 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2008-04-29 19:11:55 +0000 |
commit | 49f828416c65b26d8dd348266ff2ca83f2e16e98 (patch) | |
tree | 358aaf63957e5fc1e1fa61c70b38988e5c6dfbc6 | |
parent | eb63d7a1b71c51fd3b85c7056471ec6914e55e96 (diff) | |
download | jackcess-49f828416c65b26d8dd348266ff2ca83f2e16e98.tar.gz jackcess-49f828416c65b26d8dd348266ff2ca83f2e16e98.zip |
add some prefix compression
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@350 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r-- | test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |