Hi,

Instead of disabling compression, you could use random data. The most
realistic solution would be to use real data (for example PDF files)
but random data is much easier. Make sure you use the same seed value
so you always get the exact same data for each database and test run
(but not for each file of course):

        Random r = new Random(1);
        byte[] buff = new byte[4 * 1024];
        ...
        r.nextBytes(buff);

Regards,
Thomas

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to