Author: julianfoad
Date: Tue Mar 22 13:35:24 2011
New Revision: 1084173

URL: http://svn.apache.org/viewvc?rev=1084173&view=rev
Log:
* subversion/libsvn_wc/wc-metadata.sql
  Fix the NODES table creation statements: add a semicolon after creating
    the NODES_CURRENT view.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc-metadata.sql

Modified: subversion/trunk/subversion/libsvn_wc/wc-metadata.sql
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc-metadata.sql?rev=1084173&r1=1084172&r2=1084173&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc-metadata.sql (original)
+++ subversion/trunk/subversion/libsvn_wc/wc-metadata.sql Tue Mar 22 13:35:24 
2011
@@ -492,7 +492,7 @@ CREATE VIEW NODES_CURRENT AS
   SELECT * FROM nodes AS n
     WHERE op_depth = (SELECT MAX(op_depth) FROM nodes AS n2
                       WHERE n2.wc_id = n.wc_id
-                        AND n2.local_relpath = n.local_relpath)
+                        AND n2.local_relpath = n.local_relpath);
 
 /* Many queries have to filter the nodes table to pick only that version
    of each node with the base (least "current") op_depth.  This view


Reply via email to