chiark / gitweb /
Organise TODO list
[ypp-sc-tools.db-test.git] / yarrg / devel-notes
1 ceb's example route:
2   alpha,byrne,papaya,turtle,jorvik,luthien
3
4 example mixed arbitrage/trade
5   xi,heph
6
7
8 To remedy bug fixed in 01c14767c024ac56686dbbfcd88d9f3a0b4b1574,
9 did this:
10
11 sqlite> begin;
12 sqlite> insert or ignore into stalls select null, buy.islandid, stalls.stallname from buy, stalls using (stallid);
13 sqlite> insert or ignore into stalls select null, sell.islandid, stalls.stallname from sell, stalls using (stallid);
14 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));
15 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));
16 sqlite> commit;
17
18 And to check that it worked:
19
20 sqlite> select * from buy offers, stalls using (stallid) where offers.islandid != stalls.islandid group by offers.islandid;
21 sqlite> select * from sell offers, stalls using (stallid) where offers.islandid != stalls.islandid group by offers.islandid;
22 sqlite>