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 dj...@apache.org on 2006/08/09 02:01:26 UTC

svn commit: r429893 - /db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java

Author: djd
Date: Tue Aug  8 17:01:25 2006
New Revision: 429893

URL: http://svn.apache.org/viewvc?rev=429893&view=rev
Log:
DERBY-1315 (minor cleanup) Make optimizerToBestPlanMap private scope and change its description into a javadoc comment.

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java?rev=429893&r1=429892&r2=429893&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/FromTable.java Tue Aug  8 17:01:25 2006
@@ -101,13 +101,15 @@
     
 	private boolean considerSortAvoidancePath;
 
-	// Set of optimizer->trulyTheBestAccessPath mappings used to keep track
-	// of which of this Optimizable's "trulyTheBestAccessPath" was the best
-	// with respect to a specific outer query; the outer query is represented
-	// by an instance of Optimizer.  Each outer query could potentially have
-	// a different idea of what this Optimizable's "best access path" is, so
-	// we have to keep track of them all.
-	HashMap optimizerToBestPlanMap;
+	/**
+	 Set of optimizer->trulyTheBestAccessPath mappings used to keep track
+	 of which of this Optimizable's "trulyTheBestAccessPath" was the best
+	 with respect to a specific outer query; the outer query is represented
+	 by an instance of Optimizer.  Each outer query could potentially have
+	 a different idea of what this Optimizable's "best access path" is, so
+	 we have to keep track of them all.
+	*/
+	private HashMap optimizerToBestPlanMap;
 
   //this flag tells you if all the columns from this table are projected using * from it.
   //Used by replication enabled databases where the target-only view failure is detected