You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by kr...@apache.org on 2009/06/18 16:28:14 UTC

svn commit: r786080 - /db/derby/code/branches/10.5/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java

Author: kristwaa
Date: Thu Jun 18 14:28:14 2009
New Revision: 786080

URL: http://svn.apache.org/viewvc?rev=786080&view=rev
Log:
DERBY-4198: When using the FOR UPDATE OF clause with SUR (Scroll-insensive updatable result sets), the updateRow() method crashes.
Merged JavaDoc fix from trunk (786078).

Modified:
    db/derby/code/branches/10.5/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java

Modified: db/derby/code/branches/10.5/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java
URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.5/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java?rev=786080&r1=786079&r2=786080&view=diff
==============================================================================
--- db/derby/code/branches/10.5/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java (original)
+++ db/derby/code/branches/10.5/java/engine/org/apache/derby/iapi/sql/execute/RowChanger.java Thu Jun 18 14:28:14 2009
@@ -170,7 +170,7 @@
 	 * @param selectedCol the column number in the base table of a selected
 	 *                    column or -1 (if selected column is not a base table
 	 *                    column, e.g. i+4).
-	 * @returns column no, or -1 if not found or not a base column
+	 * @return column no, or -1 if not found or not a base column
 	 */
 	public int findSelectedCol(int selectedCol);
 }