sqlite doesn't support multi-table updates, and throws a syntax error if we try to specify the table name on the left hand side of the update (eg UPDATE foo SET foo.flags = ...).
Fixing that was the original impetus for this branch, but I ended up using ActiveRecord's quoting methods, so as a bonus we now have correctly-quoted table & column names.
sqlite doesn't support multi-table updates, and throws a syntax error if we try to specify the table name on the left hand side of the update (eg
UPDATE foo SET foo.flags = ...
).Fixing that was the original impetus for this branch, but I ended up using ActiveRecord's quoting methods, so as a bonus we now have correctly-quoted table & column names.
Hopefully this will fix travis....