here's the program it was running.

Here's the database schema
CREATE TABLE base64 (
        b64char CHAR NOT NULL PRIMARY KEY,
        b64val  INTEGER);
CREATE TABLE pos (
        pnum INTEGER PRIMARY KEY AUTOINCREMENT,
        ppos CHAR(64) NOT NULL,
        pcensus INTEGER NOT NULL,
        pscore INTEGER,
        pstate CHAR DEFAULT "N" NOT NULL,
        pmin INTEGER DEFAULT -99 NOT NULL,
        pmax INTEGER DEFAULT 99 NOT NULL,
        pmain CHAR(64));
CREATE UNIQUE INDEX pipos ON pos (ppos);
CREATE TABLE move (
        mfrom INTEGER NOT NULL,
        mto   INTEGER NOT NULL,
        mtype CHAR NOT NULL,
        mcell INTEGER NOT NULL,
        mvalue INTEGER,
        ma INTEGER DEFAULT -99,
        mb INTEGER DEFAULT 99,
        PRIMARY KEY (mfrom, mto, mcell));
CREATE UNIQUE INDEX mrev ON move (mto, mfrom, mcell);
CREATE TABLE expanded (
        census INTEGER NOT NULL,
        number INTEGER NOT NULL,
        pos CHAR(64),
        PRIMARY KEY (census, number));
CREATE INDEX exin ON expanded (number);
CREATE INDEX exis ON expanded (pos);


** Attachment added: "eround.py"
   
https://bugs.launchpad.net/ubuntu/+source/python3.5/+bug/1631218/+attachment/4756383/+files/eround.py

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631218

Title:
  seg faults in sqlite3 program

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.5/+bug/1631218/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to