[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r40043 - in trunk/subversion: include libsvn_client libsvn_wc tests/libsvn_wc

From: Greg Stein <gstein_at_gmail.com>
Date: Thu, 15 Oct 2009 15:38:28 -0400

On Thu, Oct 15, 2009 at 08:07, Bert Huijben <rhuijben_at_sharpsvn.net> wrote:
>...
> +++ trunk/subversion/libsvn_wc/wc-metadata.sql  Thu Oct 15 05:07:56 2009        (r40043)
> @@ -429,9 +429,31 @@ ADD COLUMN right_checksum  TEXT;
>
>  /* ------------------------------------------------------------------------- */
>
> -/* Format 15 introduces new handling for conflict information.  */
> +/* Format 15 introduces new handling for excluded nodes.  */
>  -- format: 15
>
> +UPDATE base_node
> +SET checksum = NULL, translated_size = NULL, changed_rev = NULL,
> +  changed_date = NULL, changed_author = NULL, depth = NULL,
> +  symlink_target = NULL, last_mod_time = NULL, properties = NULL,
> +  incomplete_children = NULL, file_external = NULL
> +WHERE depth = 'exclude';
> +
> +/* We don't support cropping working nodes, but we might see them
> +   via a copy from a sparse tree. Convert them anyway to make sure
> +   we never see depth exclude in our database */
> +UPDATE working_node
> +SET checksum = NULL, translated_size = NULL, changed_rev = NULL,
> +  changed_date = NULL, changed_author = NULL, depth = NULL,
> +  symlink_target = NULL, copyfrom_repos_id = NULL, copyfrom_repos_path = NULL,
> +  copyfrom_revnum = NULL, moved_here = NULL, moved_to = NULL,
> +  last_mod_time = NULL, properties = NULL, keep_local = NULL
> +WHERE depth = 'exclude';

Shouldn't these set presence='excluded' ??

>...

More review later...

Cheers,
-g

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2408014
Received on 2009-10-15 21:38:49 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.