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

--no commit message

--no commit message
上级 76c066d8
...@@ -39,7 +39,7 @@ Frequently Asked Questions ...@@ -39,7 +39,7 @@ Frequently Asked Questions
<p> <p>
Usually, bugs get fixes as they are found. There is a release every few weeks. Usually, bugs get fixes as they are found. There is a release every few weeks.
Here is the list of known and confirmed issues as of Here is the list of known and confirmed issues as of
2007-08-25: 2007-09-15:
</p> </p>
<ul> <ul>
<li>Some problems have been found with right outer join. Internally, it is converted to left outer join, which <li>Some problems have been found with right outer join. Internally, it is converted to left outer join, which
......
...@@ -70,8 +70,8 @@ import org.h2.constant.SysProperties; ...@@ -70,8 +70,8 @@ import org.h2.constant.SysProperties;
*/ */
public class Constants { public class Constants {
public static final int BUILD_ID = 57; public static final int BUILD_ID = 58;
private static final String BUILD = "2007-08-25"; private static final String BUILD = "2007-09-15";
public static final int VERSION_MAJOR = 1; public static final int VERSION_MAJOR = 1;
public static final int VERSION_MINOR = 0; public static final int VERSION_MINOR = 0;
......
...@@ -140,7 +140,7 @@ public class FunctionAlias extends DbObjectBase { ...@@ -140,7 +140,7 @@ public class FunctionAlias extends DbObjectBase {
return DbObject.FUNCTION_ALIAS; return DbObject.FUNCTION_ALIAS;
} }
public void removeChildrenAndResources(Session session) throws SQLException { public synchronized void removeChildrenAndResources(Session session) throws SQLException {
className = methodName = null; className = methodName = null;
javaMethod = null; javaMethod = null;
invalidate(); invalidate();
......
...@@ -3154,7 +3154,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet { ...@@ -3154,7 +3154,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/** /**
* Returns the value of the specified column as a Clob. * Returns the value of the specified column as a Clob.
* *
* @param columnName the name of the column label * @param columnIndex (1,2,...)
* @return the value * @return the value
* @throws SQLException if the column is not found or if the result set is closed * @throws SQLException if the column is not found or if the result set is closed
*/ */
...@@ -3177,7 +3177,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet { ...@@ -3177,7 +3177,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/** /**
* Returns the value of the specified column as a Clob. * Returns the value of the specified column as a Clob.
* *
* @param columnIndex (1,2,...) * @param columnName the name of the column label
* @return the value * @return the value
* @throws SQLException if the column is not found or if the result set is closed * @throws SQLException if the column is not found or if the result set is closed
*/ */
......
...@@ -77,7 +77,7 @@ public class RandomUtils { ...@@ -77,7 +77,7 @@ public class RandomUtils {
try { try {
Method m = System.class.getMethod("nanoTime", new Class[0]); Method m = System.class.getMethod("nanoTime", new Class[0]);
if (m != null) { if (m != null) {
Object o = m.invoke(null, null); Object o = m.invoke(null, (java.lang.Object[]) null);
out.writeUTF(o.toString()); out.writeUTF(o.toString());
} }
} catch (Exception e) { } catch (Exception e) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论