Subject: CVS commit: wip/trac-plugins-MasterTickets
From: Greg Troxel
Date: 2009-08-04 21:55:26
Message id: E1MYQ6n-0003jT-Ko@ddv4jf1.ch3.sourceforge.com

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'".

Files:
RevisionActionfile
1.4modifywip/trac-plugins-MasterTickets/Makefile
1.1addwip/trac-plugins-MasterTickets/patches/patch-aa