roadmap.html 45.4 KB
Newer Older
1 2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
3
Copyright 2004-2011 H2 Group. Multiple-Licensed under the H2 License, Version 1.0,
4 5
and under the Eclipse Public License, Version 1.0
(http://h2database.com/html/license.html).
6 7 8 9 10 11
Initial Developer: H2 Group
-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><title>
Roadmap
</title><link rel="stylesheet" type="text/css" href="stylesheet.css" />
12
<!-- [search] { -->
13 14 15
<script type="text/javascript" src="navigation.js"></script>
</head><body onload="frameMe();">
<table class="content"><tr class="content"><td class="content"><div class="contentDiv">
16
<!-- } -->
17 18

<h1>Roadmap</h1>
19
<p>
20
New (feature) requests will usually be added at the very end of the list. The priority is increased for important and popular requests.
21 22
Of course, patches are always welcome, but are not always applied as is.
See also <a href="build.html#providing_patches">Providing Patches</a>.
23
</p>
24

Thomas Mueller's avatar
Thomas Mueller committed
25 26
<h2>Version 1.4.x: Planned Changes</h2>
<ul><li>Build the jar file for Java 6 by default (JDBC API 4.1).
27
</li><li>Enable the new storage format for dates (system property "h2.storeLocalTime").
Thomas Mueller's avatar
Thomas Mueller committed
28
    Document time literals: between minus 2 million and 2 million hours with nanosecond resolution.
Thomas Mueller's avatar
Thomas Mueller committed
29
</li><li>Remove the old connection pool logic (system property "h2.fastConnectionPool").
30
</li><li>Enable "h2.modifyOnWrite".
Thomas Mueller's avatar
Thomas Mueller committed
31
</li><li>Enable Mode.supportOffsetFetch by default, so that "select 1 fetch first 1 row only" works.
Thomas Mueller's avatar
Thomas Mueller committed
32
</li><li>The default user name should be an empty string and not "sa".
Thomas Mueller's avatar
Thomas Mueller committed
33 34
</li></ul>

35
<h2>Priority 1</h2>
Thomas Mueller's avatar
Thomas Mueller committed
36
<ul><li>Bugfixes.
Thomas Mueller's avatar
Thomas Mueller committed
37
</li><li>Test if out of disk space can corrupt a database.
Thomas Mueller's avatar
Thomas Mueller committed
38 39
</li><li>More tests with MULTI_THREADED=1 (and MULTI_THREADED with MVCC):
    Online backup (using the 'backup' statement).
Thomas Mueller's avatar
Thomas Mueller committed
40
</li><li>Server side cursors.
41 42 43
</li></ul>

<h2>Priority 2</h2>
Thomas Mueller's avatar
Thomas Mueller committed
44 45
<ul><li>Support hints for the optimizer (which index to use, enforce the join order).
</li><li>Full outer joins.
Thomas Mueller's avatar
Thomas Mueller committed
46 47 48
</li><li>Access rights: remember the owner of an object.
    Create, alter and drop privileges.
    COMMENT: allow owner of object to change it.
49
    Issue 208: Access rights for schemas.
Thomas Mueller's avatar
Thomas Mueller committed
50
</li><li>Test multi-threaded in-memory db access.
Thomas Mueller's avatar
Thomas Mueller committed
51
</li><li>MySQL, MS SQL Server compatibility: support case sensitive (mixed case) identifiers without quotes.
52 53
</li><li>Migrate database tool (also from other database engines). For Oracle, maybe use
    DBMS_METADATA.GET_DDL / GET_DEPENDENT_DDL.
Thomas Mueller's avatar
Thomas Mueller committed
54 55
</li><li>Clustering: support mixed clustering mode (one embedded, others in server mode).
</li><li>Clustering: reads should be randomly distributed (optional) or to a designated database on RAM (parameter: READ_FROM=3).
Thomas Mueller's avatar
Thomas Mueller committed
56 57
</li><li>Window functions: RANK() and DENSE_RANK(), partition using OVER().
    select *, count(*) over() as fullCount from ... limit 4;
58
</li><li>PostgreSQL catalog: use BEFORE SELECT triggers instead of views over metadata tables.
Thomas Mueller's avatar
Thomas Mueller committed
59
</li><li>Compatibility: automatically load functions from a script depending on the mode - see FunctionsMySQL.java, issue 211.
Thomas Mueller's avatar
Thomas Mueller committed
60
</li><li>Test very large databases and LOBs (up to 256 GB).
Thomas Mueller's avatar
Thomas Mueller committed
61
</li><li>Store all temp files in the temp directory.
Thomas Mueller's avatar
Thomas Mueller committed
62 63
</li><li>Don't use temp files, specially not deleteOnExit (bug 4513817: File.deleteOnExit consumes memory).
    Also to allow opening client / server (remote) connections when using LOBs.
Thomas Mueller's avatar
Thomas Mueller committed
64
</li><li>Sequence: add features [NO] MINVALUE, MAXVALUE, CYCLE.
Thomas Mueller's avatar
Thomas Mueller committed
65
</li><li>Make DDL (Data Definition) operations transactional.
Thomas Mueller's avatar
Thomas Mueller committed
66
</li><li>Deferred integrity checking (DEFERRABLE INITIALLY DEFERRED).
Thomas Mueller's avatar
Thomas Mueller committed
67
</li><li>Groovy Stored Procedures: http://groovy.codehaus.org/GSQL
Thomas Mueller's avatar
Thomas Mueller committed
68
</li><li>Add a migration guide (list differences between databases).
69
</li><li>Optimization: automatic index creation suggestion using the trace file?
Thomas Mueller's avatar
Thomas Mueller committed
70
</li><li>Fulltext search Lucene: analyzer configuration, mergeFactor.
Thomas Mueller's avatar
Thomas Mueller committed
71 72 73 74 75 76 77 78 79 80
</li><li>Compression performance: don't allocate buffers, compress / expand in to out buffer.
</li><li>Rebuild index functionality to shrink index size and improve performance.
</li><li>Console: add accesskey to most important commands (A, AREA, BUTTON, INPUT, LABEL, LEGEND, TEXTAREA).
</li><li>Test performance again with SQL Server, Oracle, DB2.
</li><li>Test with Spatial DB in a box / JTS: http://www.opengeospatial.org/standards/sfs - OpenGIS Implementation Specification.
</li><li>Write more tests and documentation for MVCC (Multi Version Concurrency Control).
</li><li>Find a tool to view large text file (larger than 100 MB), with find, page up and down (like less), truncate before / after.
</li><li>Implement, test, document XAConnection and so on.
</li><li>Pluggable data type (for streaming, hashing, compression, validation, conversion, encryption).
</li><li>CHECK: find out what makes CHECK=TRUE slow, move to CHECK2.
Thomas Mueller's avatar
Thomas Mueller committed
81
</li><li>Drop with invalidate views (so that source code is not lost). Check what other databases do exactly.
Thomas Mueller's avatar
Thomas Mueller committed
82 83
</li><li>Index usage for (ID, NAME)=(1, 'Hi'); document.
</li><li>Set a connection read only (Connection.setReadOnly) or using a connection parameter.
84
</li><li>Support GRANT SELECT, UPDATE ON [schemaName.] *.
Thomas Mueller's avatar
Thomas Mueller committed
85
</li><li>Access rights: finer grained access control (grant access for specific functions).
Thomas Mueller's avatar
Thomas Mueller committed
86
</li><li>ROW_NUMBER() OVER([PARTITION BY columnName][ORDER BY columnName]).
Thomas Mueller's avatar
Thomas Mueller committed
87 88 89 90 91
</li><li>Version check: docs / web console (using Javascript), and maybe in the library (using TCP/IP).
</li><li>Web server classloader: override findResource / getResourceFrom.
</li><li>Cost for embedded temporary view is calculated wrong, if result is constant.
</li><li>Count index range query (count(*) where id between 10 and 20).
</li><li>Performance: update in-place.
Thomas Mueller's avatar
Thomas Mueller committed
92
</li><li>Clustering: when a database is back alive, automatically synchronize with the master (requires readable transaction log).
Thomas Mueller's avatar
Thomas Mueller committed
93
</li><li>Database file name suffix: a way to use no or a different suffix (for example using a slash).
Thomas Mueller's avatar
Thomas Mueller committed
94 95
</li><li>Eclipse plugin.
</li><li>Asynchronous queries to support publish/subscribe: SELECT ... FOR READ WAIT [maxMillisToWait].
Thomas Mueller's avatar
Thomas Mueller committed
96
    See also MS SQL Server "Query Notification".
97
</li><li>Fulltext search (native): reader / tokenizer / filter.
Thomas Mueller's avatar
Thomas Mueller committed
98 99
</li><li>Linked schema using CSV files: one schema for a directory of files; support indexes for CSV files.
</li><li>iReport to support H2.
Thomas Mueller's avatar
Thomas Mueller committed
100
</li><li>Include SMPT (mail) client (alert on cluster failure, low disk space,...).
101
</li><li>Option for SCRIPT to only process one or a set of schemas or tables, and append to a file.
Thomas Mueller's avatar
Thomas Mueller committed
102 103
</li><li>JSON parser and functions.
</li><li>Copy database: tool with config GUI and batch mode, extensible (example: compare).
104
</li><li>Document, implement tool for long running transactions using user-defined compensation statements.
Thomas Mueller's avatar
Thomas Mueller committed
105
</li><li>Support SET TABLE DUAL READONLY.
106
</li><li>GCJ: what is the state now?
Thomas Mueller's avatar
Thomas Mueller committed
107
</li><li>Events for: database Startup, Connections, Login attempts, Disconnections, Prepare (after parsing), Web Server. See http://docs.openlinksw.com/virtuoso/fn_dbev_startup.html
Thomas Mueller's avatar
Thomas Mueller committed
108
</li><li>Optimization: simpler log compression.
Thomas Mueller's avatar
Thomas Mueller committed
109
</li><li>Support standard INFORMATION_SCHEMA tables, as defined in http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt - specially KEY_COLUMN_USAGE: http://dev.mysql.com/doc/refman/5.0/en/information-schema.html, http://www.xcdsql.org/Misc/INFORMATION_SCHEMA%20With%20Rolenames.gif
Thomas Mueller's avatar
Thomas Mueller committed
110
</li><li>Compatibility: in MySQL, HSQLDB, /0.0 is NULL; in PostgreSQL, Derby: division by zero. HSQLDB: 0.0e1 / 0.0e1 is NaN.
Thomas Mueller's avatar
Thomas Mueller committed
111 112
</li><li>Functional tables should accept parameters from other tables (see FunctionMultiReturn) SELECT * FROM TEST T, P2C(T.A, T.R).
</li><li>Custom class loader to reload functions on demand.
113
</li><li>Test http://mysql-je.sourceforge.net/
Thomas Mueller's avatar
Thomas Mueller committed
114
</li><li>H2 Console: the webclient could support more features like phpMyAdmin.
Thomas Mueller's avatar
Thomas Mueller committed
115
</li><li>Support Oracle functions: TRUNC, NVL2, TO_CHAR, TO_DATE, TO_NUMBER.
Thomas Mueller's avatar
Thomas Mueller committed
116
</li><li>Work on the Java to C converter.
Thomas Mueller's avatar
Thomas Mueller committed
117 118 119
</li><li>The HELP information schema can be directly exposed in the Console.
</li><li>Maybe use the 0x1234 notation for binary fields, see MS SQL Server.
</li><li>Support Oracle CONNECT BY in some way: http://www.adp-gmbh.ch/ora/sql/connect_by.html http://philip.greenspun.com/sql/trees.html
Thomas Mueller's avatar
Thomas Mueller committed
120
</li><li>SQL Server 2005, Oracle: support COUNT(*) OVER(). See http://www.orafusion.com/art_anlytc.htm
Thomas Mueller's avatar
Thomas Mueller committed
121 122
</li><li>SQL 2003: http://www.wiscorp.com/sql_2003_standard.zip
</li><li>Version column (number/sequence and timestamp based).
123
</li><li>Optimize getGeneratedKey: send last identity after each execute (server).
Thomas Mueller's avatar
Thomas Mueller committed
124 125 126 127
</li><li>Test and document UPDATE TEST SET (ID, NAME) = (SELECT ID*10, NAME || '!' FROM TEST T WHERE T.ID=TEST.ID).
</li><li>Max memory rows / max undo log size: use block count / row size not row count.
</li><li>Support 123L syntax as in Java; example: SELECT (2000000000*2).
</li><li>Implement point-in-time recovery.
128
</li><li>Support PL/SQL (programming language / control flow statements).
Thomas Mueller's avatar
Thomas Mueller committed
129 130 131 132 133
</li><li>LIKE: improved version for larger texts (currently using naive search).
</li><li>Throw an exception when the application calls getInt on a Long (optional).
</li><li>Default date format for input and output (local date constants).
</li><li>Document ROWNUM usage for reports: SELECT ROWNUM, * FROM (subquery).
</li><li>File system that writes to two file systems (replication, replicating file system).
134
</li><li>Standalone tool to get relevant system properties and add it to the trace output.
Thomas Mueller's avatar
Thomas Mueller committed
135 136 137 138 139 140 141 142
</li><li>Support 'call proc(1=value)' (PostgreSQL, Oracle).
</li><li>Console: improve editing data (Tab, Shift-Tab, Enter, Up, Down, Shift+Del?).
</li><li>Console: autocomplete Ctrl+Space inserts template.
</li><li>Option to encrypt .trace.db file.
</li><li>Auto-Update feature for database, .jar file.
</li><li>ResultSet SimpleResultSet.readFromURL(String url): id varchar, state varchar, released timestamp.
</li><li>Partial indexing (see PostgreSQL).
</li><li>Add GUI to build a custom version (embedded, fulltext,...) using build flags.
143
</li><li>http://rubyforge.org/projects/hypersonic/
Thomas Mueller's avatar
Thomas Mueller committed
144 145 146 147 148
</li><li>Add a sample application that runs the H2 unit test and writes the result to a file (so it can be included in the user app).
</li><li>Table order: ALTER TABLE TEST ORDER BY NAME DESC (MySQL compatibility).
</li><li>Backup tool should work with other databases as well.
</li><li>Console: -ifExists doesn't work for the console. Add a flag to disable other dbs.
</li><li>Check if 'FSUTIL behavior set disablelastaccess 1' improves the performance (fsutil behavior query disablelastaccess).
149 150
</li><li>Java static code analysis: http://pmd.sourceforge.net/
</li><li>Java static code analysis: http://www.eclipse.org/tptp/
Thomas Mueller's avatar
Thomas Mueller committed
151 152 153 154
</li><li>Compatibility for CREATE SCHEMA AUTHORIZATION.
</li><li>Implement Clob / Blob truncate and the remaining functionality.
</li><li>Tree join functionality.
</li><li>Add multiple columns at the same time with ALTER TABLE .. ADD .. ADD ...
Thomas Mueller's avatar
Thomas Mueller committed
155
</li><li>File locking: writing a system property to detect concurrent access from the same VM (different classloaders).
Thomas Mueller's avatar
Thomas Mueller committed
156
</li><li>Pure SQL triggers (example: update parent table if the child table is changed).
Thomas Mueller's avatar
Thomas Mueller committed
157
</li><li>Add H2 to Gem (Ruby install system).
158 159 160
</li><li>Support linked JCR tables.
</li><li>Native fulltext search: min word length; store word positions.
</li><li>Add an option to the SCRIPT command to generate only portable / standard SQL.
Thomas Mueller's avatar
Thomas Mueller committed
161
</li><li>Updatable views: create 'instead of' triggers automatically if possible (simple cases first).
162 163 164 165 166 167 168
</li><li>Improve create index performance.
</li><li>Compact databases without having to close the database (vacuum).
</li><li>Implement more JDBC 4.0 features.
</li><li>Support TRANSFORM / PIVOT as in MS Access.
</li><li>SELECT * FROM (VALUES (...), (...), ....) AS alias(f1, ...).
</li><li>Support updatable views with join on primary keys (to extend a table).
</li><li>Public interface for functions (not public static).
Thomas Mueller's avatar
Thomas Mueller committed
169
</li><li>Support reading the transaction log.
170
</li><li>Feature matrix as in <a href="http://www.inetsoftware.de/products/jdbc/mssql/features/default.asp">i-net software</a>.
Thomas Mueller's avatar
Thomas Mueller committed
171
</li><li>Updatable result set on table without primary key or unique index.
Thomas Mueller's avatar
Thomas Mueller committed
172
</li><li>Compatibility with Derby and PostgreSQL: VALUES(1), (2); SELECT * FROM (VALUES (1), (2)) AS myTable(c1). Issue 221.
Thomas Mueller's avatar
Thomas Mueller committed
173
</li><li>Allow execution time prepare for SELECT * FROM CSVREAD(?, 'columnNameString')
Thomas Mueller's avatar
Thomas Mueller committed
174
</li><li>Support data type INTERVAL
Thomas Mueller's avatar
Thomas Mueller committed
175 176 177
</li><li>Support nested transactions (possibly using savepoints internally).
</li><li>Add a benchmark for bigger databases, and one for many users.
</li><li>Compression in the result set over TCP/IP.
Thomas Mueller's avatar
Thomas Mueller committed
178 179
</li><li>Support curtimestamp (like curtime, curdate).
</li><li>Support ANALYZE {TABLE|INDEX} tableName COMPUTE|ESTIMATE|DELETE STATISTICS ptnOption options.
180 181
</li><li>Release locks (shared or exclusive) on demand
</li><li>Support OUTER UNION
182
</li><li>Support parameterized views (similar to CSVREAD, but using just SQL for the definition)
183 184
</li><li>A way (JDBC driver) to map an URL (jdbc:h2map:c1) to a connection object
</li><li>Support dynamic linked schema (automatically adding/updating/removing tables)
Thomas Mueller's avatar
Thomas Mueller committed
185
</li><li>Clustering: adding a node should be very fast and without interrupting clients (very short lock)
186 187
</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
Thomas Mueller's avatar
Thomas Mueller committed
188
</li><li>Optimizations: faster hash function for strings.
189 190 191
</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
192
</li><li>In the MySQL and PostgreSQL mode, use lower case identifiers by default (DatabaseMetaData.storesLowerCaseIdentifiers = true)
193 194 195
</li><li>Support multiple directories (on different hard drives) for the same database
</li><li>Server protocol: use challenge response authentication, but client sends hash(user+password) encrypted with response
</li><li>Support EXEC[UTE] (doesn't return a result set, compatible to MS SQL Server)
Thomas Mueller's avatar
Thomas Mueller committed
196
</li><li>Support native XML data type - see http://en.wikipedia.org/wiki/SQL/XML
197
</li><li>Support triggers with a string property or option: SpringTrigger, OSGITrigger
Thomas Mueller's avatar
Thomas Mueller committed
198
</li><li>MySQL compatibility: update test1 t1, test2 t2 set t1.id = t2.id where t1.id = t2.id;
199 200 201 202
</li><li>Ability to resize the cache array when resizing the cache
</li><li>Time based cache writing (one second after writing the log)
</li><li>Check state of H2 driver for DDLUtils: https://issues.apache.org/jira/browse/DDLUTILS-185
</li><li>Index usage for REGEXP LIKE.
203
</li><li>Compatibility: add a role DBA (like ADMIN).
204 205 206
</li><li>Better support multiple processors for in-memory databases.
</li><li>Support N'text'
</li><li>Support compatibility for jdbc:hsqldb:res:
Thomas Mueller's avatar
Thomas Mueller committed
207 208 209
</li><li>HSQLDB compatibility: automatically convert to the next 'higher' data type.
    Example: cast(2000000000 as int) + cast(2000000000 as int);
    (HSQLDB: long; PostgreSQL: integer out of range)
210 211 212 213 214 215 216
</li><li>Provide an Java SQL builder with standard and H2 syntax
</li><li>Trace: write OS, file system, JVM,... when opening the database
</li><li>Support indexes for views (probably requires materialized views)
</li><li>Document SET SEARCH_PATH, BEGIN, EXECUTE, parameters
</li><li>Browser: use Desktop.isDesktopSupported and browse when using JDK 1.6
</li><li>Server: use one listener (detect if the request comes from an PG or TCP client)
</li><li>Optimize SELECT MIN(ID), MAX(ID), COUNT(*) FROM TEST WHERE ID BETWEEN 100 AND 200
Thomas Mueller's avatar
Thomas Mueller committed
217
</li><li>Sequence: PostgreSQL compatibility (rename, create) http://www.postgresql.org/docs/8.2/static/sql-altersequence.html
Thomas Mueller's avatar
Thomas Mueller committed
218
</li><li>DISTINCT: support large result sets by sorting on all columns (additionally) and then removing duplicates.
Thomas Mueller's avatar
Thomas Mueller committed
219
</li><li>Support a special trigger on all tables to allow building a transaction log reader.
220
</li><li>File system with a background writer thread; test if this is faster
Thomas Mueller's avatar
Thomas Mueller committed
221
</li><li>Better document the source code (high level documentation).
222 223
</li><li>Support select * from dual a left join dual b on b.x=(select max(x) from dual)
</li><li>Optimization: don't lock when the database is read-only
224
</li><li>Issue 146: Support merge join.
225
</li><li>Integrate spatial functions from http://geosysin.iict.ch/irstv-trac/wiki/H2spatial/Download
Thomas Mueller's avatar
Thomas Mueller committed
226
</li><li>Cluster: hot deploy (adding a node at runtime).
Thomas Mueller's avatar
Thomas Mueller committed
227
</li><li>Support DatabaseMetaData.insertsAreDetected: updatable result sets should detect inserts.
228
</li><li>Oracle: support DECODE method (convert to CASE WHEN).
229
</li><li>Native search: support "phrase search", wildcard search (* and ?), case-insensitive search, boolean operators, and grouping
Thomas Mueller's avatar
Thomas Mueller committed
230
</li><li>Improve documentation of access rights.
Thomas Mueller's avatar
Thomas Mueller committed
231
</li><li>Support opening a database that is in the classpath, maybe using a new file system. Workaround: detect jar file using getClass().getProtectionDomain().getCodeSource().getLocation().
Thomas Mueller's avatar
Thomas Mueller committed
232 233
</li><li>Support ENUM data type (see MySQL, PostgreSQL, MS SQL Server, maybe others).
</li><li>Remember the user defined data type (domain) of a column.
Thomas Mueller's avatar
Thomas Mueller committed
234
</li><li>MVCC: support multi-threaded kernel with multi-version concurrency.
Thomas Mueller's avatar
Thomas Mueller committed
235
</li><li>Auto-server: add option to define the port range or list.
236
</li><li>Support Jackcess (MS Access databases)
237 238 239 240 241
</li><li>Built-in methods to write large objects (BLOB and CLOB): FILE_WRITE('test.txt', 'Hello World')
</li><li>Improve time to open large databases (see mail 'init time for distributed setup')
</li><li>Move Maven 2 repository from hsql.sf.net to h2database.sf.net
</li><li>Java 1.5 tool: JdbcUtils.closeSilently(s1, s2,...)
</li><li>Javadoc: document design patterns used
Thomas Mueller's avatar
Thomas Mueller committed
242
</li><li>Support custom collators, for example for natural sort (for text that contains numbers).
243
</li><li>Write an article about SQLInjection (h2/src/docsrc/html/images/SQLInjection.txt)
244
</li><li>Convert SQL-injection-2.txt to html document, include SQLInjection.java sample
Thomas Mueller's avatar
Thomas Mueller committed
245
</li><li>Support OUT parameters in user-defined procedures.
246 247 248 249 250 251
</li><li>Web site design: http://www.igniterealtime.org/projects/openfire/index.jsp
</li><li>HSQLDB compatibility: Openfire server uses: CREATE SCHEMA PUBLIC AUTHORIZATION DBA;
    CREATE USER SA PASSWORD ""; GRANT DBA TO SA; SET SCHEMA PUBLIC
</li><li>Translation: use ${.} in help.csv
</li><li>Translated .pdf
</li><li>Recovery tool: bad blocks should be converted to INSERT INTO SYSTEM_ERRORS(...), and things should go into the .trace.db file
Thomas Mueller's avatar
Thomas Mueller committed
252 253 254
</li><li>Issue 357: support getGeneratedKeys to return multiple rows when used with batch updates.
    This is supported by MySQL, but not Derby. Both PostgreSQL and HSQLDB don't support getGeneratedKeys.
    Also support it when using INSERT ... SELECT.
255 256 257 258 259
</li><li>RECOVER=2 to backup the database, run recovery, open the database
</li><li>Recovery should work with encrypted databases
</li><li>Corruption: new error code, add help
</li><li>Space reuse: after init, scan all storages and free those that don't belong to a live database object
</li><li>Access rights: add missing features (users should be 'owner' of objects; missing rights for sequences; dropping objects)
260
</li><li>Support NOCACHE table option (Oracle).
261
</li><li>Support table partitioning.
262
</li><li>Add regular javadocs (using the default doclet, but another css) to the homepage.
263
</li><li>The database should be kept open for a longer time when using the server mode.
264
</li><li>Javadocs: for each tool, add a copy &amp; paste sample in the class level.
265
</li><li>Javadocs: add @author tags.
266
</li><li>Fluent API for tools: Server.createTcpServer().setPort(9081).setPassword(password).start();
267
</li><li>MySQL compatibility: real SQL statement for DESCRIBE TEST
268
</li><li>Use a default delay of 1 second before closing a database.
269 270
</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).
Thomas Mueller's avatar
Thomas Mueller committed
271
</li><li>Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object) (with test case).
Thomas Mueller's avatar
Thomas Mueller committed
272
</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).
273
</li><li>Oracle compatibility: support NLS_DATE_FORMAT.
Thomas Mueller's avatar
Thomas Mueller committed
274
</li><li>Support for Thread.interrupt to cancel running statements.
Thomas Mueller's avatar
Thomas Mueller committed
275
</li><li>Cluster: add feature to make sure cluster nodes can not get out of sync (for example by stopping one process).
276
</li><li>H2 Console: support CLOB/BLOB download using a link.
277
</li><li>Support flashback queries as in Oracle.
278
</li><li>Import / Export of fixed with text files.
279
</li><li>HSQLDB compatibility: automatic data type for SUM if value is the value is too big (by default use the same type as the data).
280
</li><li>Improve the optimizer to select the right index for special cases: where id between 2 and 4 and booleanColumn
Thomas Mueller's avatar
Thomas Mueller committed
281
</li><li>Linked tables: make hidden columns available (Oracle: rowid and ora_rowscn columns).
282
</li><li>H2 Console: in-place autocomplete.
Thomas Mueller's avatar
Thomas Mueller committed
283
</li><li>Support large databases: split database files to multiple directories / disks (similar to tablespaces).
284
</li><li>H2 Console: support configuration option for fixed width (monospace) font.
285 286
</li><li>Native fulltext search: support analyzers (specially for Chinese, Japanese).
</li><li>Automatically compact databases from time to time (as a background process).
287
</li><li>Test Eclipse DTP.
288 289
</li><li>H2 Console: autocomplete: keep the previous setting
</li><li>executeBatch: option to stop at the first failed statement.
290 291
</li><li>Implement OLAP features as described here: http://www.devx.com/getHelpOn/10MinuteSolution/16573/0/page/5
</li><li>Support Oracle ROWID (unique identifier for each row).
Thomas Mueller's avatar
Thomas Mueller committed
292
</li><li>MySQL compatibility: alter table add index i(c), add constraint c foreign key(c) references t(c);
Thomas Mueller's avatar
Thomas Mueller committed
293 294
</li><li>Server mode: improve performance for batch updates.
</li><li>Applets: support read-only databases in a zip file (accessed as a resource).
295 296
</li><li>Long running queries / errors / trace system table.
</li><li>H2 Console should support JaQu directly.
Thomas Mueller's avatar
Thomas Mueller committed
297
</li><li>Better document FTL_SEARCH, FTL_SEARCH_DATA.
298
</li><li>Sequences: CURRVAL should be session specific. Compatibility with PostgreSQL.
299
</li><li>Index creation using deterministic functions.
Thomas Mueller's avatar
Thomas Mueller committed
300
</li><li>ANALYZE: for unique indexes that allow null, count the number of null.
Thomas Mueller's avatar
Thomas Mueller committed
301
</li><li>MySQL compatibility: multi-table delete: DELETE .. FROM .. [,...] USING - See http://dev.mysql.com/doc/refman/5.0/en/delete.html
302
</li><li>AUTO_SERVER: support changing IP addresses (disable a network while the database is open).
303
</li><li>Avoid using java.util.Calendar internally because it's slow, complicated, and buggy.
304
</li><li>Support TRUNCATE .. CASCADE like PostgreSQL.
305
</li><li>Fulltext search: lazy result generation using SimpleRowSource.
Thomas Mueller's avatar
Thomas Mueller committed
306
</li><li>Fulltext search: support alternative syntax: WHERE FTL_CONTAINS(name, 'hello').
Thomas Mueller's avatar
Thomas Mueller committed
307
</li><li>MySQL compatibility: support REPLACE, see http://dev.mysql.com/doc/refman/6.0/en/replace.html and issue 73.
308
</li><li>MySQL compatibility: support INSERT INTO table SET column1 = value1, column2 = value2
Thomas Mueller's avatar
Thomas Mueller committed
309
</li><li>Docs: add a one line description for each functions and SQL statements at the top (in the link section).
310
</li><li>Javadoc search: weight for titles should be higher ('random' should list Functions as the best match).
311
</li><li>Replace information_schema tables with regular tables that are automatically re-built when needed. Use indexes.
Thomas Mueller's avatar
Thomas Mueller committed
312
</li><li>Issue 50: Oracle compatibility: support calling 0-parameters functions without parenthesis. Make constants obsolete.
313
</li><li>MySQL, HSQLDB compatibility: support where 'a'=1 (not supported by Derby, PostgreSQL)
Thomas Mueller's avatar
Thomas Mueller committed
314
</li><li>Support a data type "timestamp with timezone" using java.util.Calendar.
Thomas Mueller's avatar
Thomas Mueller committed
315
</li><li>Finer granularity for SLF4J trace - See http://code.google.com/p/h2database/issues/detail?id=62
316
</li><li>Add database creation date and time to the database.
Thomas Mueller's avatar
Thomas Mueller committed
317
</li><li>Optimize A=? OR B=? to UNION if the cost is lower.
Thomas Mueller's avatar
Thomas Mueller committed
318
</li><li>Support ASSERTION.
319
</li><li>MySQL compatibility: support comparing 1='a'
320 321
</li><li>Support PostgreSQL lock modes: http://www.postgresql.org/docs/8.3/static/explicit-locking.html
</li><li>PostgreSQL compatibility: test DbVisualizer and Squirrel SQL using a new PostgreSQL JDBC driver.
322
</li><li>RunScript should be able to read from system in (or quite mode for Shell).
323
</li><li>Natural join: support select x from dual natural join dual.
Thomas Mueller's avatar
Thomas Mueller committed
324
</li><li>Support using system properties in database URLs (may be a security problem).
325
</li><li>Natural join: somehow support this: select a.x, b.x, x from dual a natural join dual b
Thomas Mueller's avatar
Thomas Mueller committed
326
</li><li>Use the Java service provider mechanism to register file systems and function libraries.
327
</li><li>MySQL compatibility: for auto_increment columns, convert 0 to next value (as when inserting NULL).
328 329
</li><li>Optimization for multi-column IN: use an index if possible. Example: (A, B) IN((1, 2), (2, 3)).
</li><li>Optimization for EXISTS: convert to inner join or IN(..) if possible.
330
</li><li>Functions: support hashcode(value); cryptographic and fast
331
</li><li>Serialized file lock: support long running queries.
332
</li><li>Network: use 127.0.0.1 if other addresses don't work.
333
</li><li>Pluggable network protocol (currently  Socket/ServerSocket over TCP/IP) - see also TransportServer with master slave replication.
334 335 336
</li><li>Support reading JCR data: one table per node type; query table; cache option
</li><li>OSGi: create a sample application, test, document.
</li><li>help.csv: use complete examples for functions; run as test case.
Thomas Mueller's avatar
Thomas Mueller committed
337
</li><li>Functions to calculate the memory and disk space usage of a table, a row, or a value.
338
</li><li>Re-implement PooledConnection; use a lightweight connection object.
339 340 341
</li><li>Doclet: convert tests in javadocs to a java class.
</li><li>Doclet: format fields like methods, but support sorting by name and value.
</li><li>Doclet: shrink the html files.
342
</li><li>MySQL compatibility: support SET NAMES 'latin1' - See also http://code.google.com/p/h2database/issues/detail?id=56
343 344
</li><li>Allow to scan index backwards starting with a value (to better support ORDER BY DESC).
</li><li>Java Service Wrapper: try http://yajsw.sourceforge.net/
Thomas Mueller's avatar
Thomas Mueller committed
345
</li><li>Batch parameter for INSERT, UPDATE, and DELETE, and commit after each batch. See also MySQL DELETE.
346
</li><li>MySQL compatibility: support ALTER TABLE .. MODIFY COLUMN.
347 348
</li><li>Use a lazy and auto-close input stream (open resource when reading, close on eof).
</li><li>PostgreSQL compatibility: generate_series.
Thomas Mueller's avatar
Thomas Mueller committed
349
</li><li>Connection pool: 'reset session' command (delete temp tables, rollback, auto-commit true).
350 351
</li><li>Improve SQL documentation, see http://www.w3schools.com/sql/
</li><li>MySQL compatibility: DatabaseMetaData.stores*() methods should return the same values. Test with SquirrelSQL.
352
</li><li>MS SQL Server compatibility: support DATEPART syntax.
353 354
</li><li>Sybase/DB2/Oracle compatibility: support out parameters in stored procedures - See http://code.google.com/p/h2database/issues/detail?id=83
</li><li>Support INTERVAL data type (see Oracle and others).
355
</li><li>Combine Server and Console tool (only keep Server).
356
</li><li>Store the Lucene index in the database itself.
357
</li><li>Support standard MERGE statement: http://en.wikipedia.org/wiki/Merge_%28SQL%29
358 359
</li><li>Oracle compatibility: support DECODE(x, ...).
</li><li>MVCC: compare concurrent update behavior with PostgreSQL and Oracle.
360
</li><li>HSQLDB compatibility: CREATE FUNCTION (maybe using a Function interface).
361
</li><li>HSQLDB compatibility: support CALL "java.lang.Math.sqrt"(2.0)
362
</li><li>Support comma as the decimal separator in the CSV tool.
Thomas Mueller's avatar
Thomas Mueller committed
363 364
</li><li>Compatibility: Java functions with SQLJ Part1 http://www.acm.org/sigmod/record/issues/9912/standards.pdf.gz
</li><li>Compatibility: Java functions with SQL/PSM (Persistent Stored Modules) - need to find the documentation.
365
</li><li>CACHE_SIZE: automatically use a fraction of Runtime.maxMemory - maybe automatically the second level cache.
366 367
</li><li>Support date/time/timestamp as documented in http://en.wikipedia.org/wiki/ISO_8601
</li><li>PostgreSQL compatibility: when in PG mode, treat BYTEA data like PG.
Thomas Mueller's avatar
Thomas Mueller committed
368
</li><li>Support =ANY(array) as in PostgreSQL. See also http://www.postgresql.org/docs/8.0/interactive/arrays.html
369
</li><li>IBM DB2 compatibility: support PREVIOUS VALUE FOR sequence.
370
</li><li>Compatibility: use different LIKE ESCAPE characters depending on the mode (disable for Derby, HSQLDB, DB2, Oracle, MSSQLServer).
371
</li><li>Oracle compatibility: support CREATE SYNONYM table FOR schema.table.
372 373 374 375
</li><li>FTP: document the server, including -ftpTask option to execute / kill remote processes
</li><li>FTP: problems with multithreading?
</li><li>FTP: implement SFTP / FTPS
</li><li>FTP: access to a database (.csv for a table, a directory for a schema, a file for a lob, a script.sql file).
376
</li><li>More secure default configuration if remote access is enabled.
377 378 379
</li><li>Improve database file locking (maybe use native file locking). The current approach seems to be problematic
    if the file system is on a remote share (see Google Group 'Lock file modification time is in the future').
</li><li>Document internal features such as BELONGS_TO_TABLE, NULL_TO_DEFAULT, SEQUENCE.
380
</li><li>Issue 107: Prefer using the ORDER BY index if LIMIT is used.
381
</li><li>An index on (id, name) should be used for a query: select * from t where s=? order by i
382 383
</li><li>Support reading sequences using DatabaseMetaData.getTables(null, null, null, new String[]{"SEQUENCE"}).
    See PostgreSQL.
384
</li><li>Add option to enable TCP_NODELAY using Socket.setTcpNoDelay(true).
385
</li><li>Maybe disallow = within database names (jdbc:h2:mem:MODE=DB2 means database name MODE=DB2).
386
</li><li>Fast alter table add column.
387
</li><li>Improve concurrency for in-memory database operations.
Thomas Mueller's avatar
Thomas Mueller committed
388 389
</li><li>Issue 122: Support for connection aliases for remote tcp connections.
</li><li>Fast scrambling (strong encryption doesn't help if the password is included in the application).
Thomas Mueller's avatar
Thomas Mueller committed
390
</li><li>H2 Console: support -webPassword to require a password to access preferences or shutdown.
391 392 393 394 395 396
</li><li>Issue 126: The index name should be "IDX_" plus the constraint name unless there is a conflict, in which case append a number.
</li><li>Issue 127: Support activation/deactivation of triggers
</li><li>Issue 130: Custom log event listeners
</li><li>Issue 131: IBM DB2 compatibility: sysibm.sysdummy1
</li><li>Issue 132: Use Java enum trigger type.
</li><li>Issue 134: IBM DB2 compatibility: session global variables.
Thomas Mueller's avatar
Thomas Mueller committed
397
</li><li>Cluster: support load balance with values for each server / auto detect.
398
</li><li>FTL_SET_OPTION(keyString, valueString) with key stopWords at first.
399
</li><li>Pluggable access control mechanism.
400
</li><li>Fulltext search (Lucene): support streaming CLOB data.
401
</li><li>Document/example how to create and read an encrypted script file.
402 403 404
</li><li>Check state of https://issues.apache.org/jira/browse/OPENJPA-1367 (H2 does support cross joins).
</li><li>Fulltext search (Lucene): only prefix column names with _ if they already start with _. Instead of DATA / QUERY / modified use _DATA, _QUERY, _MODIFIED if possible.
</li><li>Support a way to create or read compressed encrypted script files using an API.
405 406 407
</li><li>Scripting language support (Javascript).
</li><li>The network client should better detect if the server is not an H2 server and fail early.
</li><li>H2 Console: support CLOB/BLOB upload.
Thomas Mueller's avatar
Thomas Mueller committed
408
</li><li>Database file lock: detect hibernate / standby / very slow threads (compare system time).
409
</li><li>Automatic detection of redundant indexes.
410
</li><li>Maybe reject join without "on" (except natural join).
411
</li><li>Implement GiST (Generalized Search Tree for Secondary Storage).
412
</li><li>Function to read a number of bytes/characters from an BLOB or CLOB.
Thomas Mueller's avatar
Thomas Mueller committed
413
</li><li>Issue 156: Support SELECT ? UNION SELECT ?.
Thomas Mueller's avatar
Thomas Mueller committed
414
</li><li>Automatic mixed mode: support a port range list (to avoid firewall problems).
Thomas Mueller's avatar
Thomas Mueller committed
415
</li><li>Support the pseudo column rowid, oid, _rowid_.
Thomas Mueller's avatar
Thomas Mueller committed
416
</li><li>H2 Console / large result sets: stream early instead of keeping a whole result in-memory
Thomas Mueller's avatar
Thomas Mueller committed
417
</li><li>Support TRUNCATE for linked tables.
418
</li><li>UNION: evaluate INTERSECT before UNION (like most other database except Oracle).
Thomas Mueller's avatar
Thomas Mueller committed
419
</li><li>Delay creating the information schema, and share metadata columns.
420
</li><li>TCP Server: use a nonce (number used once) to protect unencrypted channels against replay attacks.
Thomas Mueller's avatar
Thomas Mueller committed
421
</li><li>Simplify running scripts and recovery: CREATE FORCE USER (overwrites an existing user).
422
</li><li>Support CREATE DATABASE LINK (a custom JDBC driver is already supported).
Thomas Mueller's avatar
Thomas Mueller committed
423
</li><li>Support large GROUP BY operations. Issue 216.
Thomas Mueller's avatar
Thomas Mueller committed
424
</li><li>Issue 163: Allow to create foreign keys on metadata types.
425
</li><li>Logback: write a native DBAppender.
426
</li><li>Cache size: don't use more cache than what is available.
Thomas Mueller's avatar
Thomas Mueller committed
427
</li><li>Allow to defragment at runtime (similar to SHUTDOWN DEFRAG) in a background thread.
Thomas Mueller's avatar
Thomas Mueller committed
428
</li><li>Tree index: Instead of an AVL tree, use a general balanced trees or a scapegoat tree.
429
</li><li>User defined functions: allow to store the bytecode (of just the class, or the jar file of the extension) in the database.
Thomas Mueller's avatar
Thomas Mueller committed
430
</li><li>Compatibility: ResultSet.getObject() on a CLOB (TEXT) should return String for PostgreSQL and MySQL.
Thomas Mueller's avatar
Thomas Mueller committed
431
</li><li>Optimizer: WHERE X=? AND Y IN(?), it always uses the index on Y. Should be cost based.
Thomas Mueller's avatar
Thomas Mueller committed
432
</li><li>Common Table Expression (CTE) / recursive queries: support parameters. Issue 314.
Thomas Mueller's avatar
Thomas Mueller committed
433
</li><li>Oracle compatibility: support INSERT ALL.
Thomas Mueller's avatar
Thomas Mueller committed
434
</li><li>Issue 178: Optimizer: index usage when both ascending and descending indexes are available.
Thomas Mueller's avatar
Thomas Mueller committed
435
</li><li>Issue 179: Related subqueries in HAVING clause.
Thomas Mueller's avatar
Thomas Mueller committed
436 437
</li><li>IBM DB2 compatibility: NOT NULL WITH DEFAULT. Similar to MySQL Mode.convertInsertNullToZero.
</li><li>Creating primary key: always create a constraint.
Thomas Mueller's avatar
Thomas Mueller committed
438 439
</li><li>Maybe use a different page layout: keep the data at the head of the page, and ignore the tail
    (don't store / read it). This may increase write / read performance depending on the file system.
Thomas Mueller's avatar
Thomas Mueller committed
440
</li><li>Indexes of temporary tables are currently kept in-memory. Is this how it should be?
Thomas Mueller's avatar
Thomas Mueller committed
441
</li><li>The Shell tool should support the same built-in commands as the H2 Console.
442
</li><li>Maybe use PhantomReference instead of finalize.
443
</li><li>Database file name suffix: should only have one dot by default. Example: .h2db
Thomas Mueller's avatar
Thomas Mueller committed
444
</li><li>Issue 196: Function based indexes
Thomas Mueller's avatar
Thomas Mueller committed
445
</li><li>ALTER TABLE ... ADD COLUMN IF NOT EXISTS columnName.
446 447
</li><li>Fix the disk space leak (killing the process at the exact right moment will increase
    the disk space usage; this space is not re-used). See TestDiskSpaceLeak.java
Thomas Mueller's avatar
Thomas Mueller committed
448
</li><li>ROWNUM: Oracle compatibility when used within a subquery. Issue 198.
Thomas Mueller's avatar
Thomas Mueller committed
449
</li><li>Allow to access the database over HTTP (possibly using port 80) and a servlet in a REST way.
Thomas Mueller's avatar
Thomas Mueller committed
450 451
</li><li>ODBC: encrypted databases are not supported because the ;CIPHER= can not be set.
</li><li>Support CLOB and BLOB update, specially conn.createBlob().setBinaryStream(1);
Thomas Mueller's avatar
Thomas Mueller committed
452
</li><li>Optimizer: index usage when both ascending and descending indexes are available. Issue 178.
Thomas Mueller's avatar
Thomas Mueller committed
453
</li><li>Issue 306: Support schema specific domains.
Thomas Mueller's avatar
Thomas Mueller committed
454 455 456 457 458
</li><li>Triggers: support user defined execution order. Oracle:
    CREATE OR REPLACE TRIGGER TEST_2 BEFORE INSERT
    ON TEST FOR EACH ROW FOLLOWS TEST_1.
    SQL specifies that multiple triggers should be fired in time-of-creation order.
    PostgreSQL uses name order, which was judged to be more convenient.
Thomas Mueller's avatar
Thomas Mueller committed
459 460 461
    Derby: triggers are fired in the order in which they were created.
</li><li>PostgreSQL compatibility: combine "users" and "roles". See:
    http://www.postgresql.org/docs/8.1/interactive/user-manag.html
Thomas Mueller's avatar
Thomas Mueller committed
462 463
</li><li>Improve documentation of system properties: only list the property names, default values, and description.
</li><li>Support running totals / cumulative sum using SUM(..) OVER(..).
Thomas Mueller's avatar
Thomas Mueller committed
464
</li><li>Improve object memory size calculation. Use constants for known VMs, or use reflection to call java.lang.instrument.Instrumentation.getObjectSize(Object objectToSize)
Thomas Mueller's avatar
Thomas Mueller committed
465
</li><li>Triggers: NOT NULL checks should be done after running triggers (Oracle behavior, maybe others).
Thomas Mueller's avatar
Thomas Mueller committed
466 467 468 469 470
</li><li>Common Table Expression (CTE) / recursive queries: support INSERT INTO ... SELECT ... Issue 219.
</li><li>Common Table Expression (CTE) / recursive queries: support non-recursive queries. Issue 217.
</li><li>Common Table Expression (CTE) / recursive queries: avoid endless loop. Issue 218.
</li><li>Common Table Expression (CTE) / recursive queries: support multiple named queries. Issue 220.
</li><li>Common Table Expression (CTE) / recursive queries: identifier scope may be incorrect. Issue 222.
Thomas Mueller's avatar
Thomas Mueller committed
471
</li><li>Log long running transactions (similar to long running statements).
Thomas Mueller's avatar
Thomas Mueller committed
472
</li><li>Parameter data type is data type of other operand. Issue 205.
Thomas Mueller's avatar
Thomas Mueller committed
473
</li><li>Some combinations of nested join with right outer join are not supported.
Thomas Mueller's avatar
Thomas Mueller committed
474
</li><li>DatabaseEventListener.openConnection(id) and closeConnection(id).
Thomas Mueller's avatar
Thomas Mueller committed
475 476 477
</li><li>Listener or authentication module for new connections, or a way to restrict the number of different connections to a tcp server,
    or to prevent to login with the same username and password from different IPs.
    Possibly using the DatabaseEventListener API, or a new API.
Thomas Mueller's avatar
Thomas Mueller committed
478 479
</li><li>Compatibility for data type CHAR (Derby, HSQLDB). Issue 212.
</li><li>Compatibility with MySQL TIMESTAMPDIFF. Issue 209.
Thomas Mueller's avatar
Thomas Mueller committed
480 481 482
</li><li>Optimizer: use a histogram of the data, specially for non-normal distributions.
</li><li>Trigger: allow declaring as source code (like functions).
</li><li>User defined aggregate: allow declaring as source code (like functions).
Thomas Mueller's avatar
Thomas Mueller committed
483 484
</li><li>The error "table not found" is sometimes caused by using the wrong database.
    Add "(this database is empty)" to the exception message if applicable.
Thomas Mueller's avatar
Thomas Mueller committed
485 486
</li><li>MySQL + PostgreSQL compatibility: support string literal escape with \n.
</li><li>PostgreSQL compatibility: support string literal escape with double \\.
Thomas Mueller's avatar
Thomas Mueller committed
487
</li><li>Document the TCP server "management_db". Maybe include the IP address of the client.
Thomas Mueller's avatar
Thomas Mueller committed
488
</li><li>Use javax.tools.JavaCompilerTool instead of com.sun.tools.javac.Main
489
</li><li>If a database object was not found in the current schema, but one with the same name existed in another schema, included that in the error message.
Thomas Mueller's avatar
Thomas Mueller committed
490
</li><li>Optimization to use an index for OR when using multiple keys: where (key1 = ? and key2 = ?) OR (key1 = ? and key2 = ?)
Thomas Mueller's avatar
Thomas Mueller committed
491
</li><li>Issue 302: Support optimizing queries with both inner and outer joins, as in:
Thomas Mueller's avatar
Thomas Mueller committed
492 493 494
    select * from test a inner join test b on a.id=b.id inner join o on o.id=a.id where b.x=1
    (the optimizer should swap a and b here).
    See also TestNestedJoins, tag "swapInnerJoinTables".
Thomas Mueller's avatar
Thomas Mueller committed
495 496
</li><li>JaQu should support a DataSource and a way to create a Db object using a Connection (for multi-threaded usage with a connection pool).
</li><li>Move table to a different schema (rename table to a different schema), possibly using ALTER TABLE ... SET SCHEMA ...;
Thomas Mueller's avatar
Thomas Mueller committed
497
</li><li>nioMapped file system: automatically fall back to regular (non mapped) IO if there is a problem (out of memory exception for example).
Thomas Mueller's avatar
Thomas Mueller committed
498 499
</li><li>Column as parameter of function table. Issue 228.
</li><li>Connection pool: detect ;AUTOCOMMIT=FALSE in the database URL, and if set,
Thomas Mueller's avatar
Thomas Mueller committed
500
    disable autocommit for all connections.
Thomas Mueller's avatar
Thomas Mueller committed
501
</li><li>Compatibility with MS Access: support "&amp;" to concatenate text.
Thomas Mueller's avatar
Thomas Mueller committed
502
</li><li>The BACKUP statement should not synchronize on the database, and therefore should not block other users.
Thomas Mueller's avatar
Thomas Mueller committed
503
</li><li>Document the database file format.
Thomas Mueller's avatar
Thomas Mueller committed
504 505
</li><li>Support reading LOBs.
</li><li>Require appending DANGEROUS=TRUE when using certain dangerous settings such as
Thomas Mueller's avatar
Thomas Mueller committed
506
    LOG=0, LOG=1, LOCK_MODE=0, disabling FILE_LOCK,...
Thomas Mueller's avatar
Thomas Mueller committed
507 508
</li><li>Support UDT (user defined types) similar to how Apache Derby supports it:
    check constraint, allow to use it in Java functions as parameters (return values already seem to work).
Thomas Mueller's avatar
Thomas Mueller committed
509 510
</li><li>Encrypted file system (use cipher text stealing so file length doesn't need to decrypt; 4 KB header per file,
    optional compatibility with current encrypted database files).
Thomas Mueller's avatar
Thomas Mueller committed
511 512
</li><li>Issue 229: SELECT with simple OR tests uses tableScan when it could use indexes.
</li><li>GROUP BY queries should use a temporary table if there are too many rows.
Thomas Mueller's avatar
Thomas Mueller committed
513 514 515 516
</li><li>BLOB: support random access when reading.
</li><li>CLOB: support random access when reading (this is harder than for BLOB as data is stored in UTF-8 form).
</li><li>Compatibility: support SELECT INTO (as an alias for CREATE TABLE ... AS SELECT ...).
</li><li>Compatibility with MySQL: support SELECT INTO OUTFILE (cannot be an existing file) as an alias for CSVWRITE(...).
Thomas Mueller's avatar
Thomas Mueller committed
517
</li><li>Compatibility with MySQL: support non-strict mode (sql_mode = "") any data
Thomas Mueller's avatar
Thomas Mueller committed
518 519 520 521 522
    that is too large for the column will just be truncated or set to the default value.
</li><li>The full condition should be sent to the linked table, not just the indexed condition.
    Example: TestLinkedTableFullCondition
</li><li>Compatibility with IBM DB2: CREATE PROCEDURE.
</li><li>Compatibility with IBM DB2: SQL cursors.
Thomas Mueller's avatar
Thomas Mueller committed
523
</li><li>Single-column primary key values are always stored explicitly. This is not required.
Thomas Mueller's avatar
Thomas Mueller committed
524
</li><li>Compatibility with MySQL: support CREATE TABLE TEST(NAME VARCHAR(255) CHARACTER SET UTF8).
Thomas Mueller's avatar
Thomas Mueller committed
525
</li><li>CALL is incompatible with other databases because it returns a result set, so that CallableStatement.execute() returns true.
Thomas Mueller's avatar
Thomas Mueller committed
526
</li><li>Optimization for large lists for column IN(1, 2, 3, 4,...) - currently an list is used, could potentially use a hash set
Thomas Mueller's avatar
Thomas Mueller committed
527
    (maybe only for a part of the values - the ones that can be evaluated).
Thomas Mueller's avatar
Thomas Mueller committed
528
</li><li>Compatibility for ARRAY data type (Oracle: VARRAY(n) of VARCHAR(m); HSQLDB: VARCHAR(n) ARRAY; Postgres: VARCHAR(n)[]).
Thomas Mueller's avatar
Thomas Mueller committed
529
</li><li>PostgreSQL compatible array literal syntax: ARRAY[['a', 'b'], ['c', 'd']]
Thomas Mueller's avatar
Thomas Mueller committed
530
</li><li>PostgreSQL compatibility: UPDATE with FROM.
Thomas Mueller's avatar
Thomas Mueller committed
531 532
</li><li>Issue 297: Oracle compatibility for "at time zone".
</li><li>IBM DB2 compatibility: IDENTITY_VAL_LOCAL().
Thomas Mueller's avatar
Thomas Mueller committed
533 534 535
</li><li>Support SQL/XML.
</li><li>Support concurrent opening of databases.
</li><li>Improved error message and diagnostics in case of network configuration problems.
Thomas Mueller's avatar
Thomas Mueller committed
536
</li><li>TRUNCATE should reset the identity columns as in MySQL and MS SQL Server (and possibly other databases).
Thomas Mueller's avatar
Thomas Mueller committed
537 538 539 540
</li><li>Adding a primary key should make the columns 'not null' unless if there is a row with null
    (compatibility with MySQL, PostgreSQL, HSQLDB; not Derby).
</li><li>ARRAY data type: support Integer[] and so on in Java functions (currently only Object[] is supported).
</li><li>MySQL compatibility: LOCK TABLES a READ, b READ - see also http://dev.mysql.com/doc/refman/5.0/en/lock-tables.html
Thomas Mueller's avatar
Thomas Mueller committed
541
</li><li>Oracle compatibility: convert empty strings to null. Also convert an empty byte array to null, but not empty varray.
Thomas Mueller's avatar
Thomas Mueller committed
542
</li><li>The HTML to PDF converter should use http://code.google.com/p/wkhtmltopdf/
Thomas Mueller's avatar
Thomas Mueller committed
543 544
</li><li>Issue 303: automatically convert "X NOT IN(SELECT...)" to "NOT EXISTS(...)".
</li><li>MySQL compatibility: update test1 t1, test2 t2 set t1.name=t2.name where t1.id=t2.id.
Thomas Mueller's avatar
Thomas Mueller committed
545 546
</li><li>Issue 283: Improve performance of H2 on Android.
</li><li>Support INSERT INTO / UPDATE / MERGE ... RETURNING to retrieve the generated key(s).
Thomas Mueller's avatar
Thomas Mueller committed
547 548 549
</li><li>Column compression option - see http://groups.google.com/group/h2-database/browse_thread/thread/3e223504e52671fa/243da82244343f5d
</li><li>PostgreSQL compatibility: ALTER TABLE ADD combined with adding a foreign key constraint, as in ALTER TABLE FOO ADD COLUMN PARENT BIGINT REFERENCES FOO(ID).
</li><li>MS SQL Server compatibility: support @@ROWCOUNT.
550
</li><li>PostgreSQL compatibility: LOG(x) is LOG10(x) and not LN(x).
Thomas Mueller's avatar
Thomas Mueller committed
551
</li><li>Issue 311: Serialized lock mode: executeQuery of write operations fails.
Thomas Mueller's avatar
Thomas Mueller committed
552 553
</li><li>PostgreSQL compatibility: support PgAdmin III (specially the function current_setting).
</li><li>MySQL compatibility: support TIMESTAMPADD.
Thomas Mueller's avatar
Thomas Mueller committed
554
</li><li>Support SELECT ... FOR UPDATE with joins (supported by PostgreSQL, MySQL, and HSQLDB; but not Derby).
555 556
</li><li>Support SELECT ... FOR UPDATE OF [field-list] (supported by PostgreSQL, MySQL, and HSQLDB; but not Derby).
</li><li>Support SELECT ... FOR UPDATE OF [table-list] (supported by PostgreSQL, HSQLDB, Sybase).
Thomas Mueller's avatar
Thomas Mueller committed
557 558
</li><li>TRANSACTION_ID() for in-memory databases.
</li><li>TRANSACTION_ID() should be long (same as HSQLDB and PostgreSQL).
Thomas Mueller's avatar
Thomas Mueller committed
559
</li><li>Support [INNER | OUTER] JOIN USING(column [,...]).
560
</li><li>Support NATURAL [ { LEFT | RIGHT } [ OUTER ] | INNER ] JOIN (Derby, Oracle)
Thomas Mueller's avatar
Thomas Mueller committed
561
</li><li>GROUP BY columnNumber (similar to ORDER BY columnNumber) (MySQL, PostgreSQL, SQLite; not by HSQLDB and Derby).
Thomas Mueller's avatar
Thomas Mueller committed
562
</li><li>Sybase / MS SQL Server compatibility: CONVERT(..) parameters are swapped.
Thomas Mueller's avatar
Thomas Mueller committed
563
</li><li>Index conditions: WHERE AGE>1 should not scan through all rows with AGE=1.
Thomas Mueller's avatar
Thomas Mueller committed
564
</li><li>PHP support: H2 should support PDO, or test with PostgreSQL PDO.
Thomas Mueller's avatar
Thomas Mueller committed
565 566
</li><li>Outer joins: if no column of the outer join table is referenced, the outer join table could be removed from the query.
</li><li>Cluster: allow using auto-increment and identity columns by ensuring executed in lock-step.
Thomas Mueller's avatar
Thomas Mueller committed
567
</li><li>MySQL compatibility: index names only need to be unique for the given table.
Thomas Mueller's avatar
Thomas Mueller committed
568
</li><li>Issue 352: constraints: distinguish between 'no action' and 'restrict'. Currently, only restrict is supported,
Thomas Mueller's avatar
Thomas Mueller committed
569
    and 'no action' is internally mapped to 'restrict'. The database meta data returns 'restrict' in all cases.
Thomas Mueller's avatar
Thomas Mueller committed
570 571 572 573
</li><li>Oracle compatibility: support MEDIAN aggregate function.
</li><li>Issue 348: Oracle compatibility: division should return a decimal result.
</li><li>Read rows on demand: instead of reading the whole row, only read up to that column that is requested.
    Keep an pointer to the data area and the column id that is already read.
Thomas Mueller's avatar
Thomas Mueller committed
574
</li><li>Long running transactions: log session id when detected.
Thomas Mueller's avatar
Thomas Mueller committed
575 576
</li><li>Optimization: "select id from test" should use the index on id even without "order by".
</li><li>Issue 362: LIMIT support for UPDATE statements (MySQL compatibility).
577 578 579 580
</li></ul>

<h2>Not Planned</h2>
<ul>
581
<li>HSQLDB (did) support this: select id i from test where i&lt;0 (other databases don't). Supporting it may break compatibility.
582
</li><li>String.intern (so that Strings can be compared with ==) will not be used because some VMs have problems when used extensively.
Thomas Mueller's avatar
Thomas Mueller committed
583
</li><li>In prepared statements, identifier names (table names and so on) can not be parameterized. Adding such a feature would complicate the source code without providing reasonable speedup, and would slow down regular prepared statements.
584 585
</li></ul>

586 587
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>