提交 b7034974 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 b0bdfcec
...@@ -560,6 +560,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>. ...@@ -560,6 +560,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>CALL is incompatible with other databases because it returns a result set, so that CallableStatement.execute() returns true. </li><li>CALL is incompatible with other databases because it returns a result set, so that CallableStatement.execute() returns true.
</li><li>Optimization for large lists for column IN(1, 2, 3, 4,...) - currently an list is used, could potentially use a hash set </li><li>Optimization for large lists for column IN(1, 2, 3, 4,...) - currently an list is used, could potentially use a hash set
(maybe only for a part of the values - the ones that can be evaluated). (maybe only for a part of the values - the ones that can be evaluated).
</li><li>Compatibility for ARRAY data type (Oracle: VARRAY(n) of VARCHAR(m); HSQLDB: VARCHAR(n) ARRAY; Postgres: VARCHAR(n)[]).
</li></ul> </li></ul>
<h2>Not Planned</h2> <h2>Not Planned</h2>
......
...@@ -356,8 +356,8 @@ public class FunctionAlias extends SchemaObjectBase { ...@@ -356,8 +356,8 @@ public class FunctionAlias extends SchemaObjectBase {
if (columnList) { if (columnList) {
// if the column list is requested, the parameters may // if the column list is requested, the parameters may
// be null // be null
// need to set to default value otherwise the function // need to set to default value,
// can't be called at all // otherwise the function can't be called at all
o = DataType.getDefaultForPrimitiveType(paramClass); o = DataType.getDefaultForPrimitiveType(paramClass);
} else { } else {
// NULL for a java primitive: return NULL // NULL for a java primitive: return NULL
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论