Author: rhuijben
Date: Thu Jan 17 21:03:26 2013
New Revision: 1434913
URL: http://svn.apache.org/viewvc?rev=1434913&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
(read_children_info): Add note about possible bug.
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=1434913&r1=1434912&r2=1434913&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Thu Jan 17 21:03:26 2013
@@ -8044,12 +8044,16 @@ read_children_info(svn_wc__db_wcroot_t *
child_item->info.have_more_work = (child_item->nr_layers > 1);
/* Moved-to can only exist at op_depth > 0. */
+ /* ### Should we really do this for every layer where op_depth > 0
+ in undefined order? */
moved_to_relpath = svn_sqlite__column_text(stmt, 21, NULL);
if (moved_to_relpath)
child_item->info.moved_to_abspath =
svn_dirent_join(wcroot->abspath, moved_to_relpath, result_pool);
/* Moved-here can only exist at op_depth > 0. */
+ /* ### Should we really do this for every layer where op_depth > 0
+ in undefined order? */
child_item->info.moved_here = svn_sqlite__column_boolean(stmt, 20);
}
|