Ref T13210. Ref T11908. Add some basic test coverage for the new "%R" introduced in D19764, then convert LiskDAO to implement the "Database + Table Ref" interface.
To move forward, we need to convert all of these (where %T is not a table alias):
qsprintf($conn, '... %T ...', $thing->getTableName());
...to these:
qsprintf($conn, '... %R ...', $thing);
The new code is a little simpler (no ->getTableName() call) which is sort of nice. But we also have a lot of %T so this is probably going to take a while.
(I'll hold this until after the release cut.)