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 ka...@apache.org on 2007/04/18 11:38:35 UTC

svn commit: r529933 - /db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/InsertResultSet.java

Author: kahatlen
Date: Wed Apr 18 02:38:32 2007
New Revision: 529933

URL: http://svn.apache.org/viewvc?view=rev&rev=529933
Log:
Turned comments into javadoc.

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/InsertResultSet.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/InsertResultSet.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/InsertResultSet.java?view=diff&rev=529933&r1=529932&r2=529933
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/InsertResultSet.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/InsertResultSet.java Wed Apr 18 02:38:32 2007
@@ -538,7 +538,7 @@
 		endTime = getCurrentTimeMillis();
 	}
 
-	/*
+	/**
 	 * Verify that the auto-generated columns list (by position) has valid
 	 * column positions for the table.
 	 */
@@ -556,7 +556,7 @@
 		}
 	}
 
-	/*
+	/**
 	 * If user didn't provide columns list for auto-generated columns, then only include
 	 * columns with auto-generated values in the resultset. Those columns would be ones
 	 * with default value defined.
@@ -594,7 +594,7 @@
 		return returnGeneratedColumnPositionsArray;
 	}
 
-	/*
+	/**
 	 * Remove duplicate columns from the array. Then use this array to generate a sub-set
 	 * of insert resultset to be returned for JDBC3.0 getGeneratedKeys() call.
 	 */
@@ -1146,7 +1146,7 @@
                 } 
  }
 
-	/*
+	/**
 	 * Take the input row and return a new compact ExecRow
 	 * using the column positions provided in columnIndexes.
 	 * Copies references, no cloning.
@@ -1336,7 +1336,7 @@
 		return newHeapConglom;
 	}
 
-	/*
+	/**
 	** Bulk Referential Integrity Checker
 	*/
 	private void bulkValidateForeignKeys(TransactionController tc, ContextManager cm)