Log Message: Add explicit casts to avoid WHERE clauses failing on pgsql 8.3 which insists on int/text being correct in =. Basically, "WHERE dest = 39" is illegal because dest is of type text, and you need "WHERE dest = text(39)" or "WHERE dest='39'".
Revision | Action | file |
1.4 | modify | wip/trac-plugins-MasterTickets/Makefile |
1.1 | add | wip/trac-plugins-MasterTickets/patches/patch-aa |