@@ -195,7 +195,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Clustering: adding a node should be very fast and without interrupting clients (very short lock)
</li><li>Compatibility: # is the start of a single line comment (MySQL) but date quote (Access). Mode specific
</li><li>Run benchmarks with JDK 1.5, JDK 1.6, java -server
</li><li>Optimizations: faster hash function for strings, byte arrays
</li><li>Optimizations: faster hash function for strings.
</li><li>DatabaseEventListener: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality
</li><li>Benchmark: add a graph to show how databases scale (performance/database size)
</li><li>Implement a SQLData interface to map your data over to a custom object
...
...
@@ -271,7 +271,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Use a default delay of 1 second before closing a database.
</li><li>Write (log) to system table before adding to internal data structures.
</li><li>Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup).
</li><li>Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object);
</li><li>Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object) (with test case).
</li><li>MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem).
</li><li>Oracle compatibility: support NLS_DATE_FORMAT.
</li><li>Cluster: add feature to make sure cluster nodes can not get out of sync (for example by stopping one process).
roadmap_1159_li=Clustering\:adding a node should be very fast and without interrupting clients (very short lock)
roadmap_1160_li=Compatibility\:\#is the start of a single line comment (MySQL) but date quote (Access). Mode specific
roadmap_1161_li=Run benchmarks with JDK 1.5, JDK 1.6, java -server
roadmap_1162_li=Optimizations\:faster hash function for strings, byte arrays
roadmap_1162_li=Optimizations\:faster hash function for strings.
roadmap_1163_li=DatabaseEventListener\:callback for all operations (including expected time, RUNSCRIPT) and cancel functionality
roadmap_1164_li=Benchmark\:add a graph to show how databases scale (performance/database size)
roadmap_1165_li=Implement a SQLData interface to map your data over to a custom object
...
...
@@ -3178,7 +3178,7 @@ roadmap_1233_li=MySQL compatibility\: real SQL statement for DESCRIBE TEST
roadmap_1234_li=Use a default delay of 1 second before closing a database.
roadmap_1235_li=Write (log) to system table before adding to internal data structures.
roadmap_1236_li=Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup).
roadmap_1237_li=Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object);
roadmap_1237_li=Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object) (with test case).
roadmap_1238_li=MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem).