提交 0693393f authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 1a10f1ea
......@@ -18,7 +18,9 @@ Change Log
<h1>Change Log</h1>
<h2>Next Version (unreleased)</h2>
<ul><li>Self referencing constraints didn't restrict deleting rows that reference
<ul><li>Common exception (error code 23*) are no longer written to the .trace.db file by default.
</li><li>In-memory databases don't write LOBs to files any longer.
</li><li>Self referencing constraints didn't restrict deleting rows that reference
itself if there is another row that references it.
</li><li>ResultSetMetaData.getColumnName now returns the alias name except for columns.
</li><li>Temporary files are now deleted when the database is closed, even
......@@ -26,7 +28,8 @@ Change Log
</li></ul>
<h2>Version 1.1.101 (2008-10-17)</h2>
<ul><li>Queries with more than 10 tables are now faster.
<ul><li>Errors with code 42000 - 42999 are no longer written to the trace file by default.
</li><li>Queries with more than 10 tables are now faster.
</li><li>Opening a connection with AUTO_SERVER=TRUE is now fast
when the database is already open in another process (less than 0.01 seconds
instead of 2 seconds).
......
......@@ -179,6 +179,11 @@ Fabric3</a><br />
Fabric3 is a project implementing a federated service network based on the Service Component Architecture specification (http://www.osoa.org).
</p>
<p><a href="http://code.google.com/p/fit4data/">
FIT4Data</a><br />
A testing framework for data management applications built on the Java implementation of FIT.
</p>
<p><a href="http://www.fluxcorp.com">
Flux</a><br />
Java job scheduler, file transfer, workflow, and BPM.
......
......@@ -698,7 +698,7 @@ public class Recover extends Tool implements DataHandler {
for (int i = 0; i < 256; i += 16) {
textStorage = (i % 2) == 0;
int offset = i / 2;
String out = fileName + (textStorage ? ".txt." : ".") + offset + ".data.db";
String out = fileName + (textStorage ? ".txt." : ".") + offset + Constants.SUFFIX_DATA_FILE;
dumpData(fileName, textStorage, out, offset);
}
}
......
......@@ -202,6 +202,16 @@ java org.h2.test.TestAll timer
*/
public boolean jdk14 = true;
/**
* The file trace level value to use.
*/
public int traceLevelFile;
/**
* If test trace information should be written (for debugging only).
*/
public boolean traceTest;
/**
* If the transaction log files should be kept small (that is, log files
* should be switched early).
......@@ -238,20 +248,10 @@ java org.h2.test.TestAll timer
*/
boolean endless;
/**
* The file trace level value to use.
*/
int traceLevelFile;
/**
* The THROTTLE value to use.
*/
int throttle;
/**
* If test trace information should be written (for debugging only).
*/
boolean traceTest;
/**
* If the test should stop when the first error occurs.
......@@ -280,12 +280,18 @@ java org.h2.test.TestAll timer
/*
memory problems with in-memory databases (open, close... loop)
simplify translation
use only one icon, not both
http://validator.w3.org/
test web site (including search, main, web main)
test with firefox 3, internet explorer, opera, safari, google chrome
don't write stack trace of common exceptions in log file: 23*
don't write stack trace of common exceptions in log in level ERROR (use info?) file: 23*
remote and embedded
SET LOG 2:
Database.logIndexChanges stays; should be updated? need test case
......@@ -294,10 +300,6 @@ DROP ALL OBJECTS in a loop: memory problem with storageMap
test with 1.0
fix html (use xhtml?)
http://validator.w3.org/
document url parameter open_new
osgi: create a sample application, test, document
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论