You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2010/09/22 18:15:28 UTC

svn commit: r1000063 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: philip
Date: Wed Sep 22 16:15:27 2010
New Revision: 1000063

URL: http://svn.apache.org/viewvc?rev=1000063&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
  (gather_children): Fix a typo so that a NODES query is used.  This is
  sufficient for basic_tests to have only 2 FAILs with SVN_WC__NODES_ONLY.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1000063&r1=1000062&r2=1000063&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Wed Sep 22 16:15:27 2010
@@ -1397,7 +1397,7 @@ gather_children(const apr_array_header_t
 #endif
 #ifdef SVN_WC__NODES
       SVN_ERR(single_table_children(&children_nodes,
-                                    STMT_SELECT_WORKING_NODE_CHILDREN,
+                                    STMT_SELECT_WORKING_NODE_CHILDREN_1,
                                     working_count,
                                     pdh->wcroot->sdb, pdh->wcroot->wc_id,
                                     local_relpath, result_pool));