chiark / gitweb /
todo list - POST
[ypp-sc-tools.db-test.git] / yarrg / devel-notes
1 To remedy bug fixed in 01c14767c024ac56686dbbfcd88d9f3a0b4b1574,
2 did this:
3
4 sqlite> begin;
5 sqlite> insert or ignore into stalls select null, buy.islandid, stalls.stallname from buy, stalls using (stallid);
6 sqlite> insert or ignore into stalls select null, sell.islandid, stalls.stallname from sell, stalls using (stallid);
7 sqlite> update buy set stallid = (select stallid from stalls where stalls.islandid == buy.islandid and stalls.stallname == (select stallname from stalls as bad where buy.stallid == bad.stallid));
8 sqlite> update sell set stallid = (select stallid from stalls where stalls.islandid == sell.islandid and stalls.stallname == (select stallname from stalls as bad where sell.stallid == bad.stallid));
9 sqlite> commit;
10
11 And to check that it worked:
12
13 sqlite> select * from buy offers, stalls using (stallid) where offers.islandid != stalls.islandid group by offers.islandid;
14 sqlite> select * from sell offers, stalls using (stallid) where offers.islandid != stalls.islandid group by offers.islandid;
15 sqlite>