Open
Bug 977160
Opened 11 years ago
Updated 2 years ago
use WITHOUT ROWID in inputhistory table
Categories
(Toolkit :: Places, defect, P5)
Toolkit
Places
Tracking
()
REOPENED
People
(Reporter: mak, Unassigned)
References
(Blocks 2 open bugs)
Details
This is backwards compatible
ALTER TABLE moz_inputhistory RENAME TO moz_inputhistory_old
CREATE TABLE moz_inputhistory (
place_id INTEGER NOT NULL,
input TEXT NOT NULL,
use_count INTEGER,
PRIMARY KEY (place_id, input)
) WITHOUT ROWID
INSERT INTO moz_inputhistory SELECT place_id, input, use_count from moz_inputhistory_old
DROP TABLE moz_inputhistory_old
Reporter | ||
Updated•8 years ago
|
Priority: -- → P5
Comment 1•6 years ago
|
||
Per policy at https://wiki.mozilla.org/Bug_Triage/Projects/Bug_Handling/Bug_Husbandry#Inactive_Bugs. If this bug is not an enhancement request or a bug not present in a supported release of Firefox, then it may be reopened.
Status: NEW → RESOLVED
Closed: 6 years ago
Resolution: --- → INACTIVE
Reporter | ||
Updated•6 years ago
|
Status: RESOLVED → REOPENED
Resolution: INACTIVE → ---
Updated•5 years ago
|
Points: --- → 2
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•