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

RE: svn commit: r1470904 - /subversion/trunk/subversion/libsvn_wc/wc-metadata.sql

From: Bert Huijben <bert_at_qqmail.nl>
Date: Thu, 25 Apr 2013 00:34:30 +0200

> -----Original Message-----
> From: Bert Huijben [mailto:bert_at_qqmail.nl]
> Sent: donderdag 25 april 2013 00:14
> To: 'Paul Burba'; 'Subversion Development'
> Subject: RE: svn commit: r1470904 -
> /subversion/trunk/subversion/libsvn_wc/wc-metadata.sql

> > > Which ultimately causes libsvn_wc/upgrade:bump_to_31() to create an
> > > INHERITED_PROPS cache for the WC root, albeit and empty one.
> > >
> > > The tweak I suggest above avoids the root from being selected:
> > >
> > > SELECT l.wc_id, l.local_relpath FROM nodes as l
> > > LEFT OUTER JOIN nodes as r
> > > ON l.wc_id = r.wc_id
> > > AND r.local_relpath = l.parent_relpath
> > > AND r.op_depth = 0 AND l.op_depth = 0
> > > AND l.repos_path != ''
> >
> > ^^^
> > This line should have that same effect?
> > (Moved from the where to the join to have it apply to all the or clauses
> > without having to duplicate it 3 times)
> >
> > Are you sure that you have that line in your testcase.
>
> Tested this query and indeed it shows this problem.
>
> The op-depth checks on the line above it should also be moved to the where
> part for all three cases.

I tweaked the query further in r1471744.

The 'IS NOT' expression in the new query is similar to '!=' but returns TRUE when one side is NULL, while '!=' would return NULL if either or both sides are NULL which evaluated to false in this query.

>
> Bert
Received on 2013-04-25 00:35:34 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.