View Ticket
Not logged in
Ticket UUID: 77c58e1415e06fd3a34ca1456b2dcbf119560126
Title: fossil scrub --private fails when used from an open checkout
Status: Fixed Type: Code_Defect
Severity: Minor Priority:
Subsystem: Resolution: Fixed
Last Modified: 2011-03-04 13:19:19
Version Found In: ae89a7ce79
Description & Comments:
When used from an open checkout, fossil scrub --private yields the following error:

c:\Windows\System32\fossil.exe: SQLITE_ERROR: no such table: main.delta c:\Windows\System32\fossil.exe: no such table: main.delta CREATE INDEX IF NOT EXISTS delta_i1 ON delta(srcid);

CREATE TABLE IF NOT EXISTS shun(uuid UNIQUE);

CREATE TABLE IF NOT EXISTS private(rid INTEGER PRIMARY KEY);

CREATE TABLE IF NOT EXISTS reportfmt( rn integer primary key, owner text, title text, cols text, sqlcode text );

CREATE TABLE IF NOT EXISTS concealed( hash TEXT PRIMARY KEY, content TEXT );

It does work when specifying the repository on the command line with the -R option though, so it's not critical.