The wc_db still needs UUIDs, though. How do they come through now?
Always via ensure_adm3() ?
On Fri, Sep 18, 2009 at 06:46, Bert Huijben <rhuijben_at_sharpsvn.net> wrote:
> Author: rhuijben
> Date: Fri Sep 18 03:46:03 2009
> New Revision: 39427
>
> Log:
> * subversion/libsvn_wc/update_editor.c
> (accumulate_entry_props): In WC-NG the repository root and UUID are the
> primary keys for a repository. The repository doesn't have to
> initialize this value, as it had to in WC-1.0.
>
> Modified:
> trunk/subversion/libsvn_wc/update_editor.c
>
> Modified: trunk/subversion/libsvn_wc/update_editor.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_wc/update_editor.c?pathrev=39427&r1=39426&r2=39427
> ==============================================================================
> --- trunk/subversion/libsvn_wc/update_editor.c Fri Sep 18 03:42:04 2009 (r39426)
> +++ trunk/subversion/libsvn_wc/update_editor.c Fri Sep 18 03:46:03 2009 (r39427)
> @@ -1232,11 +1232,8 @@ accumulate_entry_props(svn_stringbuf_t *
> flags |= SVN_WC__ENTRY_MODIFY_CMT_DATE;
> SVN_ERR(svn_time_from_cstring(&tmp_entry.cmt_date, val, pool));
> }
> - else if (! strcmp(prop->name, SVN_PROP_ENTRY_UUID))
> - {
> - flags |= SVN_WC__ENTRY_MODIFY_UUID;
> - tmp_entry.uuid = val;
> - }
> + /* Starting with Subversion 1.7 we ignore the SVN_PROP_ENTRY_UUID
> + property here. */
> }
>
> if (flags)
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=495&dsMessageId=2396354
>
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2396579
Received on 2009-09-18 20:57:01 CEST