On 9/6/16, Andy Goth <andrew.m.g...@gmail.com> wrote:
>
> The repository is private, sorry, but I should be able to help with
> debugging.
>

Just a guess:

Index: src/merge.c
==================================================================
--- src/merge.c
+++ src/merge.c
@@ -395,11 +395,11 @@
   }
   if( zPivot ){
     vAncestor = db_exists(
       "WITH RECURSIVE ancestor(id) AS ("
       "  VALUES(%d)"
-      "  UNION ALL"
+      "  UNION"
       "  SELECT pid FROM plink, ancestor"
       "   WHERE cid=ancestor.id AND pid!=%d AND cid!=%d)"
       "SELECT 1 FROM ancestor WHERE id=%d LIMIT 1",
       vid, nid, pid, pid
     ) ? 'p' : 'n';

-- 
D. Richard Hipp
d...@sqlite.org
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to