summaryrefslogtreecommitdiffstats
path: root/chrome/test/data
diff options
context:
space:
mode:
authorsmckay@chromium.org <smckay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-13 22:37:11 +0000
committersmckay@chromium.org <smckay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-13 22:37:11 +0000
commit4f6c7cb092bd3b9426f81f9bcef975d684cd41b4 (patch)
tree5231c5655b40f53fd8d265613e52856b52ca7ba3 /chrome/test/data
parent4b3ac5b5d828f48e0fb451b832eee57d2712bce9 (diff)
downloadchromium_src-4f6c7cb092bd3b9426f81f9bcef975d684cd41b4.zip
chromium_src-4f6c7cb092bd3b9426f81f9bcef975d684cd41b4.tar.gz
chromium_src-4f6c7cb092bd3b9426f81f9bcef975d684cd41b4.tar.bz2
Assume an ultra paranoid stance in migration db operations. Restrict index creation to when tables are created (additional paranoia :)
BUG=132210,129199,132192 TEST=WebDatabaseMigrationTest.MigrateVersion45InvalidToCurrent Review URL: https://chromiumcodereview.appspot.com/10537148 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142005 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data')
-rw-r--r--chrome/test/data/web_database/version_45_invalid.sql10
1 files changed, 4 insertions, 6 deletions
diff --git a/chrome/test/data/web_database/version_45_invalid.sql b/chrome/test/data/web_database/version_45_invalid.sql
index 504006d..ff2b94b 100644
--- a/chrome/test/data/web_database/version_45_invalid.sql
+++ b/chrome/test/data/web_database/version_45_invalid.sql
@@ -18,8 +18,8 @@ CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
CREATE TABLE web_app_icons (url LONGVARCHAR,width int,height int,image BLOB, UNIQUE (url, width, height));
CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token BLOB);
-CREATE TABLE web_intents (service_url LONGVARCHAR,action VARCHAR,type VARCHAR,disposition VARCHAR,UNIQUE (service_url, action, type));
-CREATE TABLE web_intents_defaults (action VARCHAR,type VARCHAR,url_pattern LONGVARCHAR,user_date INTEGER,suppression INTEGER,service_url LONGVARCHAR,UNIQUE (action, type, url_pattern));
+CREATE TABLE web_intents (INTEGER blabbity);
+CREATE TABLE web_intents_defaults (VARCHAR hammy);
CREATE TABLE "keywords" (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR);
CREATE TABLE keywords_backup(
id INT,
@@ -44,9 +44,7 @@ CREATE INDEX autofill_name ON autofill (name);
CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
CREATE INDEX web_apps_url_index ON web_apps (url);
-CREATE INDEX web_intents_index ON web_intents (action);
-CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
-- following statements are required for testing migration to version 46
-INSERT INTO web_intents VALUES ('http://poodles.com/fuzzer', 'fuzz', 'poodle/*', 'window');
-INSERT INTO web_intents_defaults VALUES ('fuzz', 'poodle/*', '', 0, 0, 'http://poodles.com/fuzzer');
+INSERT INTO web_intents VALUES (11);
+INSERT INTO web_intents_defaults VALUES ('fuzz');
COMMIT;