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/12/02 02:01:15 UTC

svn commit: r481467 - /db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java

Author: djd
Date: Fri Dec  1 17:01:11 2006
New Revision: 481467

URL: http://svn.apache.org/viewvc?view=rev&rev=481467
Log:
DERBY-2096 Missing file from last commit that broke build.

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

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java?view=diff&rev=481467&r1=481466&r2=481467
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java Fri Dec  1 17:01:11 2006
@@ -61,8 +61,8 @@
 import org.apache.derby.iapi.sql.conn.LanguageConnectionContext;
 import org.apache.derby.iapi.sql.conn.StatementContext;
 
-import org.apache.derby.impl.sql.compile.QueryTreeNode;
 import org.apache.derby.impl.sql.compile.CursorNode;
+import org.apache.derby.impl.sql.compile.StatementNode;
 
 import org.apache.derby.iapi.error.StandardException;
 
@@ -872,7 +872,7 @@
 	 *
 	 * @return	true if references SESSION schema tables/views, else false
 	 */
-	public boolean referencesSessionSchema(QueryTreeNode qt)
+	public boolean referencesSessionSchema(StatementNode qt)
 	throws StandardException {
 		//If the query references a SESSION schema table (temporary or permanent), then
 		// mark so in this statement
@@ -893,7 +893,7 @@
 
 		@exception StandardException thrown on failure.
 	 */
-	void completeCompile(QueryTreeNode qt)
+	void completeCompile(StatementNode qt)
 						throws StandardException {
 		//if (finished)
 		//	throw StandardException.newException(SQLState.LANG_STATEMENT_CLOSED, "completeCompile()");