diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2008-04-17 01:07:50 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2008-04-17 01:07:50 +0000 |
commit | 6845efc53cc544de8466c42c9f43364245889f0b (patch) | |
tree | 76c91ea5d18e057495b898752d92435b271b83a2 | |
parent | f340f01a636f8d44dfe63677b57c483ad25a2134 (diff) | |
download | jackcess-6845efc53cc544de8466c42c9f43364245889f0b.tar.gz jackcess-6845efc53cc544de8466c42c9f43364245889f0b.zip |
tweak max size
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@333 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r-- | src/java/com/healthmarketscience/jackcess/JetFormat.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/healthmarketscience/jackcess/JetFormat.java b/src/java/com/healthmarketscience/jackcess/JetFormat.java index 787cad3..b8b7fea 100644 --- a/src/java/com/healthmarketscience/jackcess/JetFormat.java +++ b/src/java/com/healthmarketscience/jackcess/JetFormat.java @@ -361,7 +361,7 @@ public abstract class JetFormat { @Override protected int defineOffsetNumRowsOnDataPage() { return 12; } @Override - protected int defineMaxNumRowsOnDataPage() { return 256; } + protected int defineMaxNumRowsOnDataPage() { return 255; } @Override protected int defineOffsetIndexCompressedByteCount() { return 24; } |