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/06/08 03:38:28 UTC

svn commit: r189486 - /incubator/derby/code/trunk/java/client/org/apache/derby/client/am/ResultSet.java

Author: bandaram
Date: Tue Jun  7 18:38:26 2005
New Revision: 189486

URL: http://svn.apache.org/viewcvs?rev=189486&view=rev
Log:
Address review comments on updatable resultset support already checked into Derby trunk.
Sure table name instead of schema name to check for presense of a table.

Submitted by Mamta Satoor(msatoor@gmail.com)

Modified:
    incubator/derby/code/trunk/java/client/org/apache/derby/client/am/ResultSet.java

Modified: incubator/derby/code/trunk/java/client/org/apache/derby/client/am/ResultSet.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/java/client/org/apache/derby/client/am/ResultSet.java?rev=189486&r1=189485&r2=189486&view=diff
==============================================================================
--- incubator/derby/code/trunk/java/client/org/apache/derby/client/am/ResultSet.java (original)
+++ incubator/derby/code/trunk/java/client/org/apache/derby/client/am/ResultSet.java Tue Jun  7 18:38:26 2005
@@ -3134,7 +3134,7 @@
         int baseTableColumn = 0;
         int totalColumns = resultSetMetaData_.getColumnCount();
         for (; baseTableColumn < totalColumns; baseTableColumn++) {
-            if (resultSetMetaData_.sqlxSchema_[baseTableColumn] != null)
+            if (resultSetMetaData_.sqlxBasename_[baseTableColumn] != null)
                 break;
         }