Roundup Tracker - Issues

Message4862

Author tekberg
Recipients ber, rouilj, tekberg
Date 2013-04-25.19:44:11
Message-id <1366919051.93.0.813874816234.issue2550805@psf.upfronthosting.co.za>
In-reply-to
OK. I found the code. It's in roundup/backends/rdbms_common.py in the 
_filter_sql method. For my version its at line 2437:

  where.append('('
      +' and '.join(["_%s._%s LIKE '%s'"%(pln, k, s) for s in v])
      +')')

This exactly matches the LIKE clause in the query. I don't know why I had 
so much trouble finding this earlier.
History
Date User Action Args
2013-04-25 19:44:11tekbergsetmessageid: <1366919051.93.0.813874816234.issue2550805@psf.upfronthosting.co.za>
2013-04-25 19:44:11tekbergsetrecipients: + tekberg, ber, rouilj
2013-04-25 19:44:11tekberglinkissue2550805 messages
2013-04-25 19:44:11tekbergcreate