Displaying 1 result from an estimated 1 matches for "db_info".
Did you mean:
fb_info
2011 Dec 12
0
yum - sqlite SIGSEVG
...tries to rebuild the .sqlite file) will segfault
once again.
The primary.xml.gz.sqlite file that gets created on the broken VM is
quite a bit smaller than that on all my working machines.
On the broken machine, it looks like
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE db_info [...];
CREATE TABLE packages [...];
# several more CREATE TABLE commands
CREATE TRIGGER removals [...];
COMMIT;
On all my working machines, it looks like
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE db_info [...];
INSERT INTO "db_info" [...];
CREAT...