I try to find undeleted directories named .settings:
select revisions from dir "/" where (is head and path like "**/.settings" and path like "**/trunk/**") order by date desc group by directory return path
But I find also deleted dirs ...
Add "not is deleted" clause, like this:
select revisions from dir "/" where (is head and path like "**/trunk/**/.settings" and not is deleted) order by date desc group by directory return path, date, isDeleted
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.