Browse Source

Fix partial page updates when using CodecHandlers which can only do full page encoding

git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@728 f203690c-595d-4dc9-a70b-905162fa7fd2
tags/jackcess-1.2.13
James Ahlborn 11 years ago
parent
commit
403148760b

+ 6
- 0
src/changes/changes.xml View File

@@ -4,6 +4,12 @@
<author email="javajedi@users.sf.net">Tim McCune</author>
</properties>
<body>
<release version="1.2.13" date="TBD">
<action dev="jahlborn" type="fix">
Fix partial page updates when using CodecHandlers which can only do
full page encoding.
</action>
</release>
<release version="1.2.12" date="2013-05-09">
<action dev="jahlborn" type="fix" system="SourceForge2" issue="94">
Do not unicode compress strings which are longer than 1024 chars.

+ 1
- 0
src/java/com/healthmarketscience/jackcess/PageChannel.java View File

@@ -239,6 +239,7 @@ public class PageChannel implements Channel, Flushable {
// reset so we can write the whole page
page = fullPage;
pageOffset = 0;
writeLen = getFormat().PAGE_SIZE;

} else {


Loading…
Cancel
Save