I set up a view that has a contextual filter set to filter based on province value, and I checked the "allow multiple terms" checkbox.

If I set the context filter to use "MD,HI" it produces this for some reason:

...
WHERE (( (location.provinceINMDHI IN  ('MD', 'HI')) )AND(( (node.status = '1') AND (node.type IN  ('institution')) )))
...

It's almost there... For some reason it's changing location.province to be location.provinceINMDHI

Comments

oalmirall’s picture

Hi, got the same error with location.province also

This is the mySQL query output from the view, arguments BA, GI

...
WHERE (( (location_field_data_field_local_ubicacion.provinceINBAGI IN  ('BA', ' GI')) )AND(( (node.status = '1') AND (node.type IN  ('local')) )))
...