You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by sv...@apache.org on 2020/07/12 04:00:28 UTC

svn commit: r1879800 - in /subversion/branches/1.14.x: ./ STATUS subversion/libsvn_wc/wc-metadata.sql

Author: svn-role
Date: Sun Jul 12 04:00:28 2020
New Revision: 1879800

URL: http://svn.apache.org/viewvc?rev=1879800&view=rev
Log:
Merge r1879198 from trunk:

 * r1879198
   Fix an invalid quoting in working copy upgrade system that only works
   because SQLite automatically fixed this. More recent SQLite functions
   will signal an error when deprecated features are disabled.
   Justification:
     Causes user-visible errors.
   Note:
     This filechange by itself doesn't trigger a change that make will
     handle. So make sure you recompile the sql queries for testing.
   Votes:
     +1: rhuijben, danielsh, jamessan

Modified:
    subversion/branches/1.14.x/   (props changed)
    subversion/branches/1.14.x/STATUS
    subversion/branches/1.14.x/subversion/libsvn_wc/wc-metadata.sql

Propchange: subversion/branches/1.14.x/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1879198

Modified: subversion/branches/1.14.x/STATUS
URL: http://svn.apache.org/viewvc/subversion/branches/1.14.x/STATUS?rev=1879800&r1=1879799&r2=1879800&view=diff
==============================================================================
--- subversion/branches/1.14.x/STATUS (original)
+++ subversion/branches/1.14.x/STATUS Sun Jul 12 04:00:28 2020
@@ -28,15 +28,3 @@ Approved changes:
      We've not entirely dropped Python 2 bindings support on 1.14.x yet
    Votes:
      +1: futatuki, stsp, rhuijben
-
- * r1879198
-   Fix an invalid quoting in working copy upgrade system that only works
-   because SQLite automatically fixed this. More recent SQLite functions
-   will signal an error when deprecated features are disabled.
-   Justification:
-     Causes user-visible errors.
-   Note:
-     This filechange by itself doesn't trigger a change that make will
-     handle. So make sure you recompile the sql queries for testing.
-   Votes:
-     +1: rhuijben, danielsh, jamessan

Modified: subversion/branches/1.14.x/subversion/libsvn_wc/wc-metadata.sql
URL: http://svn.apache.org/viewvc/subversion/branches/1.14.x/subversion/libsvn_wc/wc-metadata.sql?rev=1879800&r1=1879799&r2=1879800&view=diff
==============================================================================
--- subversion/branches/1.14.x/subversion/libsvn_wc/wc-metadata.sql (original)
+++ subversion/branches/1.14.x/subversion/libsvn_wc/wc-metadata.sql Sun Jul 12 04:00:28 2020
@@ -636,7 +636,7 @@ ON NODES (wc_id, moved_to, op_depth);
 
 CREATE INDEX IF NOT EXISTS I_PRISTINE_MD5 ON PRISTINE (md5_checksum);
 
-UPDATE nodes SET presence = "server-excluded" WHERE presence = "absent";
+UPDATE nodes SET presence = 'server-excluded' WHERE presence = 'absent';
 
 /* Just to be sure clear out file external skels from pre 1.7.0 development
    working copies that were never updated by 1.7.0+ style clients */