You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/03/27 19:32:53 UTC

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

Author: stsp
Date: Tue Mar 27 17:32:52 2012
New Revision: 1305922

URL: http://svn.apache.org/viewvc?rev=1305922&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
  (db_op_copy): Add a ### comment to indicate that more work is needed to
    deal with moves of added nodes.

Suggested by: gstein

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=1305922&r1=1305921&r2=1305922&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Tue Mar 27 17:32:52 2012
@@ -3661,6 +3661,10 @@ db_op_copy(svn_wc__db_wcroot_t *src_wcro
                     dst_op_depth,
                     dst_parent_relpath,
                     presence_map, dst_presence));
+
+      /* ### What about other results from scan_addition()?
+       * ### 'cp A B; mv B C' currently results in C being marked moved-here
+       * ### with no corresponding moved-from. */
       if (is_move && status != svn_wc__db_status_added)
         SVN_ERR(svn_sqlite__bind_int64(stmt, 7, 1));