Postgres 9.1.3, ubuntu 12.10, code cloned from github < 20 minutes ago. Not sure which postgres driver as both are available. How can I tell?
No problems but these use cases are very simple, like these: cjk@cjknovo:~/trtest/web2py/applications/Purchasing/controllers$ grep -rn contains * currencies.py:26: query &= db.currencies[field].contains(value) db_setup.py:42: (db.auth_group.role.contains(perm)) & del_terms.py:26: query &= db.del_terms[field].contains(value) documentation.py:25: query &= db.documentation[field].contains(value) group_setup.py:49: rows = db(db.auth_user.last_name.contains(n)). select( locations.py:27: query &= db.locations[field].contains(value) pmt_terms.py:25: query &= db.pmt_terms[field].contains(value) On Wednesday, April 3, 2013 1:03:47 PM UTC-4, Massimo Di Pierro wrote: > > There is a complete rewrite of the logic behind > db.table.field.contains(....) in trunk. The reason is to bette handle > list:type fields and expressions in the (...). > All string manipulations (replace, concat) are not done at SQL level and > not at the python level. > > It passes all tests on travis (https://travis-ci.org/web2py/web2py) > including newly created tests for contains. > > Yet, if you use this, please check it on your apps. > > Massimo > > -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

