summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2008-04-29 19:11:55 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2008-04-29 19:11:55 +0000
commit49f828416c65b26d8dd348266ff2ca83f2e16e98 (patch)
tree358aaf63957e5fc1e1fa61c70b38988e5c6dfbc6
parenteb63d7a1b71c51fd3b85c7056471ec6914e55e96 (diff)
downloadjackcess-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.java2
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;
}