When querying a postgresql table that has a UUID column, the multi-column filter feature generates a filter that uses LIKE params. This of course doesn't work because UUID in PGSQL does not support the LIKE operator, so the column(s) in error must be removed manually. Can we exclude UUID columns from the multi-column filter?
It would be a little bit harder, but perhaps we could detect if the pasted string is a valid UUID and use the "=" operator for the UUID columns in that case :D
(Also adding my plus-1 on the Git thing -- I'd send a patch but I don't even have SVN installed on my system!)
Thanks,
Ben