monotone-commits-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Monotone-commits-diffs] net.venge.monotone.string-sanitization: 438c41


From: code
Subject: [Monotone-commits-diffs] net.venge.monotone.string-sanitization: 438c41ce95f720b5b110091876fab266481b453d
Date: Tue, 1 Mar 2011 01:31:03 +0100 (CET)

revision:            438c41ce95f720b5b110091876fab266481b453d
date:                2011-03-01T00:30:37
author:              Richard Levitte <address@hidden>
branch:              net.venge.monotone.string-sanitization
changelog:
* src/migrate_schema.cc: Chaging URL to URI in the different dbs
  wasn't the smartest, as that will change the checksum of older schemas.

manifest:
format_version "1"

new_manifest [c657fa14588eff3144d412f5fe67bb72b5ce5052]

old_revision [fc4e68d3f3a44f72e589bded36693d8464bfc4f3]

patch "src/migrate_schema.cc"
 from [a613cb26783685a29dd39905551b3ddc7fdaf891]
   to [778717ded91866aaabea3752ebd5d44400ce8595]
============================================================
--- src/migrate_schema.cc	a613cb26783685a29dd39905551b3ddc7fdaf891
+++ src/migrate_schema.cc	778717ded91866aaabea3752ebd5d44400ce8595
@@ -381,7 +381,7 @@ char const migrate_merge_url_and_group[]
   // migrate the posting_queue table
   "ALTER TABLE posting_queue RENAME TO tmp;"
   "CREATE TABLE posting_queue"
-  "  ( url not null,   -- URI we are going to send this to\n"
+  "  ( url not null,   -- URL we are going to send this to\n"
   "    content not null -- the packets we're going to send\n"
   "  );"
   "INSERT INTO posting_queue"
@@ -391,7 +391,7 @@ char const migrate_merge_url_and_group[]
   // migrate the incoming_queue table
   "ALTER TABLE incoming_queue RENAME TO tmp;"
   "CREATE TABLE incoming_queue "
-  "  ( url not null,    -- URI we got this bundle from\n"
+  "  ( url not null,    -- URL we got this bundle from\n"
   "    content not null -- the packets we're going to read\n"
   "  );"
   "INSERT INTO incoming_queue"
@@ -401,7 +401,7 @@ char const migrate_merge_url_and_group[]
   // migrate the sequence_numbers table
   "ALTER TABLE sequence_numbers RENAME TO tmp;"
   "CREATE TABLE sequence_numbers "
-  "  ( url primary key, -- URI to read from\n"
+  "  ( url primary key, -- URL to read from\n"
   "    major not null,  -- 0 in news servers, may be higher in depots\n"
   "    minor not null   -- last article / packet sequence number we got\n"
   "  );"

reply via email to

[Prev in Thread] Current Thread [Next in Thread]