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 ba...@apache.org on 2005/05/21 03:16:53 UTC

svn commit: r171176 - /incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java

Author: bandaram
Date: Fri May 20 18:16:53 2005
New Revision: 171176

URL: http://svn.apache.org/viewcvs?rev=171176&view=rev
Log:
Remove invalid comment.

Submitted by Satheesh Bandaram (satheesh@sourcery.org)

Modified:
    incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java

Modified: incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java?rev=171176&r1=171175&r2=171176&view=diff
==============================================================================
--- incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java (original)
+++ incubator/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/InsertNode.java Fri May 20 18:16:53 2005
@@ -325,10 +325,6 @@
 		/* Bind the columns of the result set to their expressions */
 		resultSet.bindResultColumns(fromList);
 
-		/* DB2 doesn't allow different number of target columns and result columns.
-		 * RESOLVE: Enforce the limit only in DB2 mode for now. Too many tests need to be
-		 * migrated to DB2 mode first.  Only now we would have expanded STAR (*) to all columns.
-		 */
 		int resCols = resultSet.getResultColumns().size();
 		DataDictionary dd = getDataDictionary();
 		if (targetColumnList != null)