]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/subversion/subversion/libsvn_wc/wc-metadata.sql
MFC r257129,257936,258084,258569,258602,262250,262251
[FreeBSD/stable/10.git] / contrib / subversion / subversion / libsvn_wc / wc-metadata.sql
1 /* wc-metadata.sql -- schema used in the wc-metadata SQLite database
2  *     This is intended for use with SQLite 3
3  *
4  * ====================================================================
5  *    Licensed to the Apache Software Foundation (ASF) under one
6  *    or more contributor license agreements.  See the NOTICE file
7  *    distributed with this work for additional information
8  *    regarding copyright ownership.  The ASF licenses this file
9  *    to you under the Apache License, Version 2.0 (the
10  *    "License"); you may not use this file except in compliance
11  *    with the License.  You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  *    Unless required by applicable law or agreed to in writing,
16  *    software distributed under the License is distributed on an
17  *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18  *    KIND, either express or implied.  See the License for the
19  *    specific language governing permissions and limitations
20  *    under the License.
21  * ====================================================================
22  */
23
24 /*
25  * the KIND column in these tables has one of the following values
26  * (documented in the corresponding C type #svn_kind_t):
27  *   "file"
28  *   "dir"
29  *   "symlink"
30  *   "unknown"
31  *
32  * the PRESENCE column in these tables has one of the following values
33  * (see also the C type #svn_wc__db_status_t):
34  *   "normal"
35  *   "server-excluded" -- server has declared it excluded (ie. authz failure)
36  *   "excluded" -- administratively excluded (ie. sparse WC)
37  *   "not-present" -- node not present at this REV
38  *   "incomplete" -- state hasn't been filled in
39  *   "base-deleted" -- node represents a delete of a BASE node
40  */
41
42 /* One big list of statements to create our (current) schema.  */
43 -- STMT_CREATE_SCHEMA
44
45 /* ------------------------------------------------------------------------- */
46
47 CREATE TABLE REPOSITORY (
48   id INTEGER PRIMARY KEY AUTOINCREMENT,
49
50   /* The root URL of the repository. This value is URI-encoded.  */
51   root  TEXT UNIQUE NOT NULL,
52
53   /* the UUID of the repository */
54   uuid  TEXT NOT NULL
55   );
56
57 /* Note: a repository (identified by its UUID) may appear at multiple URLs.
58    For example, http://example.com/repos/ and https://example.com/repos/.  */
59 CREATE INDEX I_UUID ON REPOSITORY (uuid);
60 CREATE INDEX I_ROOT ON REPOSITORY (root);
61
62
63 /* ------------------------------------------------------------------------- */
64
65 CREATE TABLE WCROOT (
66   id  INTEGER PRIMARY KEY AUTOINCREMENT,
67
68   /* absolute path in the local filesystem.  NULL if storing metadata in
69      the wcroot itself. */
70   local_abspath  TEXT UNIQUE
71   );
72
73 CREATE UNIQUE INDEX I_LOCAL_ABSPATH ON WCROOT (local_abspath);
74
75
76 /* ------------------------------------------------------------------------- */
77
78 /* The PRISTINE table keeps track of pristine texts.  Each row describes a
79    single pristine text.  The text itself is stored in a file whose name is
80    derived from the 'checksum' column.  Each pristine text is referenced by
81    any number of rows in the NODES and ACTUAL_NODE tables.
82
83    In future, the pristine text file may be compressed.
84  */
85 CREATE TABLE PRISTINE (
86   /* The SHA-1 checksum of the pristine text. This is a unique key. The
87      SHA-1 checksum of a pristine text is assumed to be unique among all
88      pristine texts referenced from this database. */
89   checksum  TEXT NOT NULL PRIMARY KEY,
90
91   /* Enumerated values specifying type of compression. The only value
92      supported so far is NULL, meaning that no compression has been applied
93      and the pristine text is stored verbatim in the file. */
94   compression  INTEGER,
95
96   /* The size in bytes of the file in which the pristine text is stored.
97      Used to verify the pristine file is "proper". */
98   size  INTEGER NOT NULL,
99
100   /* The number of rows in the NODES table that have a 'checksum' column
101      value that refers to this row.  (References in other places, such as
102      in the ACTUAL_NODE table, are not counted.) */
103   refcount  INTEGER NOT NULL,
104
105   /* Alternative MD5 checksum used for communicating with older
106      repositories. Not strictly guaranteed to be unique among table rows. */
107   md5_checksum  TEXT NOT NULL
108   );
109
110 CREATE INDEX I_PRISTINE_MD5 ON PRISTINE (md5_checksum);
111   
112 /* ------------------------------------------------------------------------- */
113
114 /* The ACTUAL_NODE table describes text changes and property changes
115    on each node in the WC, relative to the NODES table row for the
116    same path. (A NODES row must exist if this node exists, but an
117    ACTUAL_NODE row can exist on its own if it is just recording info
118    on a non-present node - a tree conflict or a changelist, for
119    example.)
120
121    The ACTUAL_NODE table row for a given path exists if the node at that
122    path is known to have text or property changes relative to its
123    NODES row. ("Is known" because a text change on disk may not yet
124    have been discovered and recorded here.)
125
126    The ACTUAL_NODE table row for a given path may also exist in other cases,
127    including if the "changelist" or any of the conflict columns have a
128    non-null value.
129  */
130 CREATE TABLE ACTUAL_NODE (
131   /* specifies the location of this node in the local filesystem */
132   wc_id  INTEGER NOT NULL REFERENCES WCROOT (id),
133   local_relpath  TEXT NOT NULL,
134
135   /* parent's local_relpath for aggregating children of a given parent.
136      this will be "" if the parent is the wcroot. NULL if this is the
137      wcroot node. */
138   parent_relpath  TEXT,
139
140   /* serialized skel of this node's properties. NULL implies no change to
141      the properties, relative to WORKING/BASE as appropriate. */
142   properties  BLOB,
143
144   /* relpaths of the conflict files. */
145   /* ### These columns will eventually be merged into conflict_data below. */
146   conflict_old  TEXT,
147   conflict_new  TEXT,
148   conflict_working  TEXT,
149   prop_reject  TEXT,
150
151   /* if not NULL, this node is part of a changelist. */
152   changelist  TEXT,
153   
154   /* ### need to determine values. "unknown" (no info), "admin" (they
155      ### used something like 'svn edit'), "noticed" (saw a mod while
156      ### scanning the filesystem). */
157   text_mod  TEXT,
158
159   /* if a directory, serialized data for all of tree conflicts therein.
160      ### This column will eventually be merged into the conflict_data column,
161      ### but within the ACTUAL node of the tree conflict victim itself, rather
162      ### than the node of the tree conflict victim's parent directory. */
163   tree_conflict_data  TEXT,
164
165   /* A skel containing the conflict details.  */
166   conflict_data  BLOB,
167
168   /* Three columns containing the checksums of older, left and right conflict
169      texts.  Stored in a column to allow storing them in the pristine store  */
170   /* stsp: This is meant for text conflicts, right? What about property
171            conflicts? Why do we need these in a column to refer to the
172            pristine store? Can't we just parse the checksums from
173            conflict_data as well? 
174      rhuijben: Because that won't allow triggers to handle refcounts.
175                We would have to scan all conflict skels before cleaning up the
176                a single file from the pristine stor */
177   older_checksum  TEXT REFERENCES PRISTINE (checksum),
178   left_checksum  TEXT REFERENCES PRISTINE (checksum),
179   right_checksum  TEXT REFERENCES PRISTINE (checksum),
180
181   PRIMARY KEY (wc_id, local_relpath)
182   );
183
184 CREATE UNIQUE INDEX I_ACTUAL_PARENT ON ACTUAL_NODE (wc_id, parent_relpath,
185                                                     local_relpath);
186
187
188 /* ------------------------------------------------------------------------- */
189
190 /* This table is a cache of information about repository locks. */
191 CREATE TABLE LOCK (
192   /* what repository location is locked */
193   repos_id  INTEGER NOT NULL REFERENCES REPOSITORY (id),
194   repos_relpath  TEXT NOT NULL,
195
196   /* Information about the lock. Note: these values are just caches from
197      the server, and are not authoritative. */
198   lock_token  TEXT NOT NULL,
199   /* ### make the following fields NOT NULL ? */
200   lock_owner  TEXT,
201   lock_comment  TEXT,
202   lock_date  INTEGER,   /* an APR date/time (usec since 1970) */
203   
204   PRIMARY KEY (repos_id, repos_relpath)
205   );
206
207
208 /* ------------------------------------------------------------------------- */
209
210 CREATE TABLE WORK_QUEUE (
211   /* Work items are identified by this value.  */
212   id  INTEGER PRIMARY KEY AUTOINCREMENT,
213
214   /* A serialized skel specifying the work item.  */
215   work  BLOB NOT NULL
216   );
217
218
219 /* ------------------------------------------------------------------------- */
220
221 CREATE TABLE WC_LOCK (
222   /* specifies the location of this node in the local filesystem */
223   wc_id  INTEGER NOT NULL  REFERENCES WCROOT (id),
224   local_dir_relpath  TEXT NOT NULL,
225
226   locked_levels  INTEGER NOT NULL DEFAULT -1,
227
228   PRIMARY KEY (wc_id, local_dir_relpath)
229  );
230
231
232 PRAGMA user_version =
233 -- define: SVN_WC__VERSION
234 ;
235
236
237 /* ------------------------------------------------------------------------- */
238
239 /* The NODES table describes the way WORKING nodes are layered on top of
240    BASE nodes and on top of other WORKING nodes, due to nested tree structure
241    changes. The layers are modelled using the "op_depth" column.
242
243    An 'operation depth' refers to the number of directory levels down from
244    the WC root at which a tree-change operation (delete, add?, copy, move)
245    was performed.  A row's 'op_depth' does NOT refer to the depth of its own
246    'local_relpath', but rather to the depth of the nearest tree change that
247    affects that node.
248
249    The row with op_depth=0 for any given local relpath represents the "base"
250    node that is created and updated by checkout, update, switch and commit
251    post-processing.  The row with the highest op_depth for a particular
252    local_relpath represents the working version.  Any rows with intermediate
253    op_depth values are not normally visible to the user but may become
254    visible after reverting local changes.
255
256    This table contains full node descriptions for nodes in either the BASE
257    or WORKING trees as described in notes/wc-ng/design. Fields relate
258    both to BASE and WORKING trees, unless documented otherwise.
259
260    For illustration, with a scenario like this:
261
262      # (0)
263      svn rm foo
264      svn cp ^/moo foo   # (1)
265      svn rm foo/bar
266      touch foo/bar
267      svn add foo/bar    # (2)
268
269    , these are the NODES table rows for the path foo/bar:
270
271    (0)  "BASE" --->  NODES (op_depth == 0)
272    (1)               NODES (op_depth == 1)
273    (2)               NODES (op_depth == 2)
274
275    0 is the original data for foo/bar before 'svn rm foo' (if it existed).
276    1 is the data for foo/bar copied in from ^/moo/bar.
277    2 is the to-be-committed data for foo/bar, created by 'svn add foo/bar'.
278
279    An 'svn revert foo/bar' would remove the NODES of (2).
280
281  */
282 -- STMT_CREATE_NODES
283 CREATE TABLE NODES (
284   /* Working copy location related fields */
285
286   wc_id  INTEGER NOT NULL REFERENCES WCROOT (id),
287   local_relpath  TEXT NOT NULL,
288
289   /* Contains the depth (= number of path segments) of the operation
290      modifying the working copy tree structure. All nodes below the root
291      of the operation (aka operation root, aka oproot) affected by the
292      operation will be assigned the same op_depth.
293
294      op_depth == 0 designates the initial checkout; the BASE tree.
295
296    */
297   op_depth INTEGER NOT NULL,
298
299   /* parent's local_relpath for aggregating children of a given parent.
300      this will be "" if the parent is the wcroot.  Since a wcroot will
301      never have a WORKING node the parent_relpath will never be null,
302      except when op_depth == 0 and the node is a wcroot. */
303   parent_relpath  TEXT,
304
305
306   /* Repository location fields */
307
308   /* When op_depth == 0, these fields refer to the repository location of the
309      BASE node, the location of the initial checkout.
310
311      When op_depth != 0, they indicate where this node was copied/moved from.
312      In this case, the fields are set for the root of the operation and for all
313      children. */
314   repos_id  INTEGER REFERENCES REPOSITORY (id),
315   repos_path  TEXT,
316   revision  INTEGER,
317
318
319   /* WC state fields */
320
321   /* The tree state of the node.
322
323      In case 'op_depth' is equal to 0, this node is part of the 'BASE'
324      tree.  The 'BASE' represents pristine nodes that are in the
325      repository; it is obtained and modified by commands such as
326      checkout/update/switch.
327
328      In case 'op_depth' is greater than 0, this node is part of a
329      layer of working nodes.  The 'WORKING' tree is obtained and
330      modified by commands like delete/copy/revert.
331
332      The 'BASE' and 'WORKING' trees use the same literal values for
333      the 'presence' but the meaning of each value can vary depending
334      on the tree.
335
336      normal: in the 'BASE' tree this is an ordinary node for which we
337        have full information.  In the 'WORKING' tree it's an added or
338        copied node for which we have full information.
339
340      not-present: in the 'BASE' tree this is a node that is implied to
341        exist by the parent node, but is not present in the working
342        copy.  Typically obtained by delete/commit, or by update to
343        revision in which the node does not exist.  In the 'WORKING'
344        tree this is a copy of a 'not-present' node from the 'BASE'
345        tree, and it will be deleted on commit.  Such a node cannot be
346        copied directly, but can be copied as a descendant.
347
348      incomplete: in the 'BASE' tree this is an ordinary node for which
349        we do not have full information.  Only the name is guaranteed;
350        we may not have all its children, we may not have its checksum,
351        etc.  In the 'WORKING' tree this is a copied node for which we
352        do not have the full information.  This state is generally
353        obtained when an operation was interrupted.
354
355      base-deleted: not valid in 'BASE' tree.  In the 'WORKING' tree
356        this represents a node that is deleted from the tree below the
357        current 'op_depth'.  This state is badly named, it should be
358        something like 'deleted'.
359
360      server-excluded: in the 'BASE' tree this is a node that is excluded by
361        authz.  The name of the node is known from the parent, but no
362        other information is available.  Not valid in the 'WORKING'
363        tree as there is no way to commit such a node.
364
365      excluded: in the 'BASE' tree this node is administratively
366        excluded by the user (sparse WC).  In the 'WORKING' tree this
367        is a copy of an excluded node from the 'BASE' tree.  Such a
368        node cannot be copied directly but can be copied as a
369        descendant. */
370
371   presence  TEXT NOT NULL,
372
373   /* ### JF: For an old-style move, "copyfrom" info stores its source, but a
374      new WC-NG "move" is intended to be a "true rename" so its copyfrom
375      revision is implicit, being in effect (new head - 1) at commit time.
376      For a (new) move, we need to store or deduce the copyfrom local-relpath;
377      perhaps add a column called "moved_from". */
378
379   /* Boolean value, specifying if this node was moved here (rather than just
380      copied). This is set on all the nodes in the moved tree.  The source of
381      the move is implied by a different node with a moved_to column pointing
382      at the root node of the moved tree. */
383   moved_here  INTEGER,
384
385   /* If the underlying node was moved away (rather than just deleted), this
386      specifies the local_relpath of where the node was moved to.
387      This is set only on the root of a move, and is NULL for all children.
388
389      The op-depth of the moved-to node is not recorded. A moved_to path
390      always points at a node within the highest op-depth layer at the
391      destination. This invariant must be maintained by operations which
392      change existing move information. */
393   moved_to  TEXT,
394
395
396   /* Content fields */
397
398   /* the kind of the new node. may be "unknown" if the node is not present. */
399   kind  TEXT NOT NULL,
400
401   /* serialized skel of this node's properties (when presence is 'normal' or
402      'incomplete'); an empty skel or NULL indicates no properties.  NULL if
403      we have no information about the properties (any other presence).
404      TODO: Choose & require a single representation for 'no properties'.
405   */
406   properties  BLOB,
407
408   /* NULL depth means "default" (typically svn_depth_infinity) */
409   /* ### depth on WORKING? seems this is a BASE-only concept. how do
410      ### you do "files" on an added-directory? can't really ignore
411      ### the subdirs! */
412   /* ### maybe a WC-to-WC copy can retain a depth?  */
413   depth  TEXT,
414
415   /* The SHA-1 checksum of the pristine text, if this node is a file and was
416      moved here or copied here, else NULL. */
417   checksum  TEXT REFERENCES PRISTINE (checksum),
418
419   /* for kind==symlink, this specifies the target. */
420   symlink_target  TEXT,
421
422
423   /* Last-Change fields */
424
425   /* If this node was moved here or copied here, then the following fields may
426      have information about their source node.  changed_rev must be not-null
427      if this node has presence=="normal". changed_date and changed_author may
428      be null if the corresponding revprops are missing.
429
430      For an added or not-present node, these are null.  */
431   changed_revision  INTEGER,
432   changed_date      INTEGER,  /* an APR date/time (usec since 1970) */
433   changed_author    TEXT,
434
435
436   /* Various cache fields */
437
438   /* The size in bytes of the working file when it had no local text
439      modifications. This means the size of the text when translated from
440      repository-normal format to working copy format with EOL style
441      translated and keywords expanded according to the properties in the
442      "properties" column of this row.
443
444      NULL if this node is not a file or if the size has not (yet) been
445      computed. */
446   translated_size  INTEGER,
447
448   /* The mod-time of the working file when it was last determined to be
449      logically unmodified relative to its base, taking account of keywords
450      and EOL style. This value is used in the change detection heuristic
451      used by the status command.
452
453      NULL if this node is not a file or if this info has not yet been
454      determined.
455    */
456   last_mod_time  INTEGER,  /* an APR date/time (usec since 1970) */
457
458   /* serialized skel of this node's dav-cache.  could be NULL if the
459      node does not have any dav-cache. */
460   dav_cache  BLOB,
461
462   /* Is there a file external in this location. NULL if there
463      is no file external, otherwise '1'  */
464   /* ### Originally we had a wc-1.0 like skel in this place, so we
465      ### check for NULL.
466      ### In Subversion 1.7 we defined this column as TEXT, but Sqlite
467      ### only uses this information for deciding how to optimize
468      ### anyway. */
469   file_external  INTEGER,
470
471   /* serialized skel of this node's inherited properties. NULL if this
472      is not the BASE of a WC root node. */
473   inherited_props  BLOB,
474
475   PRIMARY KEY (wc_id, local_relpath, op_depth)
476
477   );
478
479 CREATE UNIQUE INDEX I_NODES_PARENT ON NODES (wc_id, parent_relpath,
480                                              local_relpath, op_depth);
481 /* I_NODES_MOVED is introduced in format 30 */
482 CREATE UNIQUE INDEX I_NODES_MOVED ON NODES (wc_id, moved_to, op_depth);
483
484 /* Many queries have to filter the nodes table to pick only that version
485    of each node with the highest (most "current") op_depth.  This view
486    does the heavy lifting for such queries.
487
488    Note that this view includes a row for each and every path that is known
489    in the WC, including, for example, paths that were children of a base- or
490    lower-op-depth directory that has been replaced by something else in the
491    current view.
492  */
493 CREATE VIEW NODES_CURRENT AS
494   SELECT * FROM nodes AS n
495     WHERE op_depth = (SELECT MAX(op_depth) FROM nodes AS n2
496                       WHERE n2.wc_id = n.wc_id
497                         AND n2.local_relpath = n.local_relpath);
498
499 /* Many queries have to filter the nodes table to pick only that version
500    of each node with the BASE ("as checked out") op_depth.  This view
501    does the heavy lifting for such queries. */
502 CREATE VIEW NODES_BASE AS
503   SELECT * FROM nodes
504   WHERE op_depth = 0;
505
506 -- STMT_CREATE_NODES_TRIGGERS
507
508 CREATE TRIGGER nodes_insert_trigger
509 AFTER INSERT ON nodes
510 WHEN NEW.checksum IS NOT NULL
511 BEGIN
512   UPDATE pristine SET refcount = refcount + 1
513   WHERE checksum = NEW.checksum;
514 END;
515
516 CREATE TRIGGER nodes_delete_trigger
517 AFTER DELETE ON nodes
518 WHEN OLD.checksum IS NOT NULL
519 BEGIN
520   UPDATE pristine SET refcount = refcount - 1
521   WHERE checksum = OLD.checksum;
522 END;
523
524 CREATE TRIGGER nodes_update_checksum_trigger
525 AFTER UPDATE OF checksum ON nodes
526 WHEN NEW.checksum IS NOT OLD.checksum
527   /* AND (NEW.checksum IS NOT NULL OR OLD.checksum IS NOT NULL) */
528 BEGIN
529   UPDATE pristine SET refcount = refcount + 1
530   WHERE checksum = NEW.checksum;
531   UPDATE pristine SET refcount = refcount - 1
532   WHERE checksum = OLD.checksum;
533 END;
534
535 -- STMT_CREATE_EXTERNALS
536
537 CREATE TABLE EXTERNALS (
538   /* Working copy location related fields (like NODES)*/
539
540   wc_id  INTEGER NOT NULL REFERENCES WCROOT (id),
541   local_relpath  TEXT NOT NULL,
542
543   /* The working copy root can't be recorded as an external in itself
544      so this will never be NULL. ### ATM only inserted, never queried */
545   parent_relpath  TEXT NOT NULL,
546
547   /* Repository location fields */
548   repos_id  INTEGER NOT NULL REFERENCES REPOSITORY (id),
549
550   /* Either MAP_NORMAL or MAP_EXCLUDED */
551   presence  TEXT NOT NULL,
552
553   /* the kind of the external. */
554   kind  TEXT NOT NULL,
555
556   /* The local relpath of the directory NODE defining this external 
557      (Defaults to the parent directory of the file external after upgrade) */
558   def_local_relpath         TEXT NOT NULL,
559
560   /* The url of the external as used in the definition */
561   def_repos_relpath         TEXT NOT NULL,
562
563   /* The operational (peg) and node revision if this is a revision fixed
564      external; otherwise NULL. (Usually these will both have the same value) */
565   def_operational_revision  TEXT,
566   def_revision              TEXT,
567
568   PRIMARY KEY (wc_id, local_relpath)
569 );
570
571 CREATE UNIQUE INDEX I_EXTERNALS_DEFINED ON EXTERNALS (wc_id,
572                                                       def_local_relpath,
573                                                       local_relpath);
574
575 /* ------------------------------------------------------------------------- */
576 /* This statement provides SQLite with the necessary information about our
577    indexes to make better decisions in the query planner.
578
579    For every interesting index this contains a number of rows where the
580    statistics ar calculated for and then for every column in the index the
581    average number of rows with the same value in all columns left of this
582    column including the column itself.
583
584    See http://www.sqlite.org/fileformat2.html#stat1tab for more details.
585
586    The important thing here is that this tells Sqlite that the wc_id column
587    of the NODES and ACTUAL_NODE table is usually a single value, so queries
588    should use more than one column for index usage.
589
590    The current hints describe NODES+ACTUAL_NODE as a working copy with
591    8000 nodes in 1 a single working copy(=wc_id), 10 nodes per directory
592    and an average of 2 op-depth layers per node.
593
594    The number of integers must be number of index columns + 1, which is
595    verified via the test_schema_statistics() test.
596  */
597 -- STMT_INSTALL_SCHEMA_STATISTICS
598 ANALYZE sqlite_master; /* Creates empty sqlite_stat1 if necessary */
599
600 INSERT OR REPLACE INTO sqlite_stat1(tbl, idx, stat) VALUES
601     ('NODES', 'sqlite_autoindex_NODES_1',               '8000 8000 2 1');
602 INSERT OR REPLACE INTO sqlite_stat1(tbl, idx, stat) VALUES
603     ('NODES', 'I_NODES_PARENT',                         '8000 8000 10 2 1');
604 /* Tell a lie: We ignore that 99.9% of all moved_to values are NULL */
605 INSERT OR REPLACE INTO sqlite_stat1(tbl, idx, stat) VALUES
606     ('NODES', 'I_NODES_MOVED',                          '8000 8000 1 1');
607
608 INSERT OR REPLACE INTO sqlite_stat1(tbl, idx, stat) VALUES
609     ('ACTUAL_NODE', 'sqlite_autoindex_ACTUAL_NODE_1',   '8000 8000 1');
610 INSERT OR REPLACE INTO sqlite_stat1(tbl, idx, stat) VALUES
611     ('ACTUAL_NODE', 'I_ACTUAL_PARENT',                  '8000 8000 10 1');
612
613 INSERT OR REPLACE INTO sqlite_stat1(tbl, idx, stat) VALUES
614     ('LOCK', 'sqlite_autoindex_LOCK_1',                 '100 100 1');
615
616 INSERT OR REPLACE INTO sqlite_stat1(tbl, idx, stat) VALUES
617     ('WC_LOCK', 'sqlite_autoindex_WC_LOCK_1',           '100 100 1');
618
619 /* sqlite_autoindex_WORK_QUEUE_1 doesn't exist because WORK_QUEUE is
620    a INTEGER PRIMARY KEY AUTOINCREMENT table */
621
622 ANALYZE sqlite_master; /* Loads sqlite_stat1 data for query optimizer */
623 /* ------------------------------------------------------------------------- */
624
625 /* Format 20 introduces NODES and removes BASE_NODE and WORKING_NODE */
626
627 -- STMT_UPGRADE_TO_20
628
629 UPDATE BASE_NODE SET checksum = (SELECT checksum FROM pristine
630                                  WHERE md5_checksum = BASE_NODE.checksum)
631 WHERE EXISTS (SELECT 1 FROM pristine WHERE md5_checksum = BASE_NODE.checksum);
632
633 UPDATE WORKING_NODE SET checksum = (SELECT checksum FROM pristine
634                                     WHERE md5_checksum = WORKING_NODE.checksum)
635 WHERE EXISTS (SELECT 1 FROM pristine
636               WHERE md5_checksum = WORKING_NODE.checksum);
637
638 INSERT INTO NODES (
639        wc_id, local_relpath, op_depth, parent_relpath,
640        repos_id, repos_path, revision,
641        presence, depth, moved_here, moved_to, kind,
642        changed_revision, changed_date, changed_author,
643        checksum, properties, translated_size, last_mod_time,
644        dav_cache, symlink_target, file_external )
645 SELECT wc_id, local_relpath, 0 /*op_depth*/, parent_relpath,
646        repos_id, repos_relpath, revnum,
647        presence, depth, NULL /*moved_here*/, NULL /*moved_to*/, kind,
648        changed_rev, changed_date, changed_author,
649        checksum, properties, translated_size, last_mod_time,
650        dav_cache, symlink_target, file_external
651 FROM BASE_NODE;
652 INSERT INTO NODES (
653        wc_id, local_relpath, op_depth, parent_relpath,
654        repos_id, repos_path, revision,
655        presence, depth, moved_here, moved_to, kind,
656        changed_revision, changed_date, changed_author,
657        checksum, properties, translated_size, last_mod_time,
658        dav_cache, symlink_target, file_external )
659 SELECT wc_id, local_relpath, 2 /*op_depth*/, parent_relpath,
660        copyfrom_repos_id, copyfrom_repos_path, copyfrom_revnum,
661        presence, depth, NULL /*moved_here*/, NULL /*moved_to*/, kind,
662        changed_rev, changed_date, changed_author,
663        checksum, properties, translated_size, last_mod_time,
664        NULL /*dav_cache*/, symlink_target, NULL /*file_external*/
665 FROM WORKING_NODE;
666
667 DROP TABLE BASE_NODE;
668 DROP TABLE WORKING_NODE;
669
670 PRAGMA user_version = 20;
671
672
673 /* ------------------------------------------------------------------------- */
674
675 /* Format 21 involves no schema changes, it moves the tree conflict victim
676    information to victime nodes, rather than parents. */
677
678 -- STMT_UPGRADE_TO_21
679 PRAGMA user_version = 21;
680
681 /* For format 21 bump code */
682 -- STMT_UPGRADE_21_SELECT_OLD_TREE_CONFLICT
683 SELECT wc_id, local_relpath, tree_conflict_data
684 FROM actual_node
685 WHERE tree_conflict_data IS NOT NULL
686
687 /* For format 21 bump code */
688 -- STMT_UPGRADE_21_ERASE_OLD_CONFLICTS
689 UPDATE actual_node SET tree_conflict_data = NULL
690
691 /* ------------------------------------------------------------------------- */
692
693 /* Format 22 simply moves the tree conflict information from the conflict_data
694    column to the tree_conflict_data column. */
695
696 -- STMT_UPGRADE_TO_22
697 UPDATE actual_node SET tree_conflict_data = conflict_data;
698 UPDATE actual_node SET conflict_data = NULL;
699
700 PRAGMA user_version = 22;
701
702
703 /* ------------------------------------------------------------------------- */
704
705 /* Format 23 involves no schema changes, it introduces multi-layer
706    op-depth processing for NODES. */
707
708 -- STMT_UPGRADE_TO_23
709 PRAGMA user_version = 23;
710
711 -- STMT_UPGRADE_23_HAS_WORKING_NODES
712 SELECT 1 FROM nodes WHERE op_depth > 0
713 LIMIT 1
714
715 /* ------------------------------------------------------------------------- */
716
717 /* Format 24 involves no schema changes; it starts using the pristine
718    table's refcount column correctly. */
719
720 -- STMT_UPGRADE_TO_24
721 UPDATE pristine SET refcount =
722   (SELECT COUNT(*) FROM nodes
723    WHERE checksum = pristine.checksum /*OR checksum = pristine.md5_checksum*/);
724
725 PRAGMA user_version = 24;
726
727 /* ------------------------------------------------------------------------- */
728
729 /* Format 25 introduces the NODES_CURRENT view. */
730
731 -- STMT_UPGRADE_TO_25
732 DROP VIEW IF EXISTS NODES_CURRENT;
733 CREATE VIEW NODES_CURRENT AS
734   SELECT * FROM nodes
735     JOIN (SELECT wc_id, local_relpath, MAX(op_depth) AS op_depth FROM nodes
736           GROUP BY wc_id, local_relpath) AS filter
737     ON nodes.wc_id = filter.wc_id
738       AND nodes.local_relpath = filter.local_relpath
739       AND nodes.op_depth = filter.op_depth;
740
741 PRAGMA user_version = 25;
742
743 /* ------------------------------------------------------------------------- */
744
745 /* Format 26 introduces the NODES_BASE view. */
746
747 -- STMT_UPGRADE_TO_26
748 DROP VIEW IF EXISTS NODES_BASE;
749 CREATE VIEW NODES_BASE AS
750   SELECT * FROM nodes
751   WHERE op_depth = 0;
752
753 PRAGMA user_version = 26;
754
755 /* ------------------------------------------------------------------------- */
756
757 /* Format 27 involves no schema changes, it introduces stores
758    conflict files as relpaths rather than names in ACTUAL_NODE. */
759
760 -- STMT_UPGRADE_TO_27
761 PRAGMA user_version = 27;
762
763 /* For format 27 bump code */
764 -- STMT_UPGRADE_27_HAS_ACTUAL_NODES_CONFLICTS
765 SELECT 1 FROM actual_node
766 WHERE NOT ((prop_reject IS NULL) AND (conflict_old IS NULL)
767            AND (conflict_new IS NULL) AND (conflict_working IS NULL)
768            AND (tree_conflict_data IS NULL))
769 LIMIT 1
770
771
772 /* ------------------------------------------------------------------------- */
773
774 /* Format 28 involves no schema changes, it only converts MD5 pristine 
775    references to SHA1. */
776
777 -- STMT_UPGRADE_TO_28
778
779 UPDATE NODES SET checksum = (SELECT checksum FROM pristine
780                              WHERE md5_checksum = nodes.checksum)
781 WHERE EXISTS (SELECT 1 FROM pristine WHERE md5_checksum = nodes.checksum);
782
783 PRAGMA user_version = 28;
784
785 /* ------------------------------------------------------------------------- */
786
787 /* Format 29 introduces the EXTERNALS table (See STMT_CREATE_TRIGGERS) and
788    optimizes a few trigger definitions. ... */
789
790 -- STMT_UPGRADE_TO_29
791
792 DROP TRIGGER IF EXISTS nodes_update_checksum_trigger;
793 DROP TRIGGER IF EXISTS nodes_insert_trigger;
794 DROP TRIGGER IF EXISTS nodes_delete_trigger;
795
796 CREATE TRIGGER nodes_update_checksum_trigger
797 AFTER UPDATE OF checksum ON nodes
798 WHEN NEW.checksum IS NOT OLD.checksum
799   /* AND (NEW.checksum IS NOT NULL OR OLD.checksum IS NOT NULL) */
800 BEGIN
801   UPDATE pristine SET refcount = refcount + 1
802   WHERE checksum = NEW.checksum;
803   UPDATE pristine SET refcount = refcount - 1
804   WHERE checksum = OLD.checksum;
805 END;
806
807 CREATE TRIGGER nodes_insert_trigger
808 AFTER INSERT ON nodes
809 WHEN NEW.checksum IS NOT NULL
810 BEGIN
811   UPDATE pristine SET refcount = refcount + 1
812   WHERE checksum = NEW.checksum;
813 END;
814
815 CREATE TRIGGER nodes_delete_trigger
816 AFTER DELETE ON nodes
817 WHEN OLD.checksum IS NOT NULL
818 BEGIN
819   UPDATE pristine SET refcount = refcount - 1
820   WHERE checksum = OLD.checksum;
821 END;
822
823 PRAGMA user_version = 29;
824
825 /* ------------------------------------------------------------------------- */
826
827 /* Format 30 creates a new NODES index for move information, and a new
828    PRISTINE index for the md5_checksum column. It also activates use of
829    skel-based conflict storage -- see notes/wc-ng/conflict-storage-2.0.
830    It also renames the "absent" presence to "server-excluded". */
831 -- STMT_UPGRADE_TO_30
832 CREATE UNIQUE INDEX IF NOT EXISTS I_NODES_MOVED
833 ON NODES (wc_id, moved_to, op_depth);
834
835 CREATE INDEX IF NOT EXISTS I_PRISTINE_MD5 ON PRISTINE (md5_checksum);
836
837 UPDATE nodes SET presence = "server-excluded" WHERE presence = "absent";
838
839 /* Just to be sure clear out file external skels from pre 1.7.0 development
840    working copies that were never updated by 1.7.0+ style clients */
841 UPDATE nodes SET file_external=1 WHERE file_external IS NOT NULL;
842
843 -- STMT_UPGRADE_30_SELECT_CONFLICT_SEPARATE
844 SELECT wc_id, local_relpath,
845   conflict_old, conflict_working, conflict_new, prop_reject, tree_conflict_data
846 FROM actual_node
847 WHERE conflict_old IS NOT NULL
848    OR conflict_working IS NOT NULL
849    OR conflict_new IS NOT NULL
850    OR prop_reject IS NOT NULL
851    OR tree_conflict_data IS NOT NULL
852 ORDER by wc_id, local_relpath
853
854 -- STMT_UPGRADE_30_SET_CONFLICT
855 UPDATE actual_node SET conflict_data = ?3, conflict_old = NULL,
856   conflict_working = NULL, conflict_new = NULL, prop_reject = NULL,
857   tree_conflict_data = NULL
858 WHERE wc_id = ?1 and local_relpath = ?2
859
860 /* ------------------------------------------------------------------------- */
861
862 /* Format 31 adds the inherited_props column to the NODES table. C code then
863    initializes the update/switch roots to make sure future updates fetch the
864    inherited properties */
865 -- STMT_UPGRADE_TO_31_ALTER_TABLE
866 ALTER TABLE NODES ADD COLUMN inherited_props BLOB;
867 -- STMT_UPGRADE_TO_31_FINALIZE
868 DROP INDEX IF EXISTS I_ACTUAL_CHANGELIST;
869 DROP INDEX IF EXISTS I_EXTERNALS_PARENT;
870
871 DROP INDEX I_NODES_PARENT;
872 CREATE UNIQUE INDEX I_NODES_PARENT ON NODES (wc_id, parent_relpath,
873                                              local_relpath, op_depth);
874
875 DROP INDEX I_ACTUAL_PARENT;
876 CREATE UNIQUE INDEX I_ACTUAL_PARENT ON ACTUAL_NODE (wc_id, parent_relpath,
877                                                     local_relpath);
878
879 PRAGMA user_version = 31;
880
881 -- STMT_UPGRADE_31_SELECT_WCROOT_NODES
882 /* Select all base nodes which are the root of a WC, including
883    switched subtrees, but excluding those which map to the root
884    of the repos.
885
886    ### IPROPS: Is this query horribly inefficient?  Quite likely,
887    ### but it only runs during an upgrade, so do we care? */
888 SELECT l.wc_id, l.local_relpath FROM nodes as l
889 LEFT OUTER JOIN nodes as r
890 ON l.wc_id = r.wc_id
891    AND r.local_relpath = l.parent_relpath
892    AND r.op_depth = 0
893 WHERE l.op_depth = 0
894   AND l.repos_path != ''
895   AND ((l.repos_id IS NOT r.repos_id)
896        OR (l.repos_path IS NOT RELPATH_SKIP_JOIN(r.local_relpath, r.repos_path, l.local_relpath)))
897
898
899 /* ------------------------------------------------------------------------- */
900 /* Format 32 ....  */
901 -- STMT_UPGRADE_TO_32
902
903 /* Drop old index. ### Remove this part from the upgrade to 31 once bumped */
904 DROP INDEX IF EXISTS I_ACTUAL_CHANGELIST;
905 DROP INDEX IF EXISTS I_EXTERNALS_PARENT;
906 CREATE INDEX I_EXTERNALS_PARENT ON EXTERNALS (wc_id, parent_relpath);
907
908 DROP INDEX I_NODES_PARENT;
909 CREATE UNIQUE INDEX I_NODES_PARENT ON NODES (wc_id, parent_relpath,
910                                              local_relpath, op_depth);
911
912 DROP INDEX I_ACTUAL_PARENT;
913 CREATE UNIQUE INDEX I_ACTUAL_PARENT ON ACTUAL_NODE (wc_id, parent_relpath,
914                                                     local_relpath);
915
916 /* ------------------------------------------------------------------------- */
917
918 /* Format YYY introduces new handling for conflict information.  */
919 -- format: YYY
920
921
922 /* ------------------------------------------------------------------------- */
923
924 /* Format 99 drops all columns not needed due to previous format upgrades.
925    Before we release 1.7, these statements will be pulled into a format bump
926    and all the tables will be cleaned up. We don't know what that format
927    number will be, however, so we're just marking it as 99 for now.  */
928 -- format: 99
929
930 /* TODO: Un-confuse *_revision column names in the EXTERNALS table to
931    "-r<operative> foo@<peg>", as suggested by the patch attached to
932    http://svn.haxx.se/dev/archive-2011-09/0478.shtml */
933 /* TODO: Remove column parent_relpath from EXTERNALS. We're not using it and
934    never will. It's not interesting like in the NODES table: the external's
935    parent path may be *anything*: unversioned, "behind" a another WC... */
936
937 /* Now "drop" the tree_conflict_data column from actual_node. */
938 CREATE TABLE ACTUAL_NODE_BACKUP (
939   wc_id  INTEGER NOT NULL,
940   local_relpath  TEXT NOT NULL,
941   parent_relpath  TEXT,
942   properties  BLOB,
943   conflict_old  TEXT,
944   conflict_new  TEXT,
945   conflict_working  TEXT,
946   prop_reject  TEXT,
947   changelist  TEXT,
948   text_mod  TEXT
949   );
950
951 INSERT INTO ACTUAL_NODE_BACKUP SELECT
952   wc_id, local_relpath, parent_relpath, properties, conflict_old,
953   conflict_new, conflict_working, prop_reject, changelist, text_mod
954 FROM ACTUAL_NODE;
955
956 DROP TABLE ACTUAL_NODE;
957
958 CREATE TABLE ACTUAL_NODE (
959   wc_id  INTEGER NOT NULL REFERENCES WCROOT (id),
960   local_relpath  TEXT NOT NULL,
961   parent_relpath  TEXT,
962   properties  BLOB,
963   conflict_old  TEXT,
964   conflict_new  TEXT,
965   conflict_working  TEXT,
966   prop_reject  TEXT,
967   changelist  TEXT,
968   text_mod  TEXT,
969
970   PRIMARY KEY (wc_id, local_relpath)
971   );
972
973 CREATE UNIQUE INDEX I_ACTUAL_PARENT ON ACTUAL_NODE (wc_id, parent_relpath,
974                                                     local_relpath);
975
976 INSERT INTO ACTUAL_NODE SELECT
977   wc_id, local_relpath, parent_relpath, properties, conflict_old,
978   conflict_new, conflict_working, prop_reject, changelist, text_mod
979 FROM ACTUAL_NODE_BACKUP;
980
981 DROP TABLE ACTUAL_NODE_BACKUP;
982
983 /* Note: Other differences between the schemas of an upgraded and a
984  * fresh WC.
985  *
986  * While format 22 was current, "NOT NULL" was added to the
987  * columns PRISTINE.size and PRISTINE.md5_checksum.  The format was not
988  * bumped because it is a forward- and backward-compatible change.
989  *
990  * While format 23 was current, "REFERENCES PRISTINE" was added to the
991  * columns ACTUAL_NODE.older_checksum, ACTUAL_NODE.left_checksum,
992  * ACTUAL_NODE.right_checksum, NODES.checksum.
993  *
994  * The "NODES_BASE" view was originally implemented with a more complex (but
995  * functionally equivalent) statement using a 'JOIN'.  WCs that were created
996  * at or upgraded to format 26 before it was changed will still have the old
997  * version.
998  */
999