- Issue created by @dan3h
- 🇳🇿New Zealand quietone
Changing tags per Issue tags field → and Issue tags -- special tags →
We have a node that has a field, "Term List", which references one or more taxonomy-terms.
We have a views-block that is placed to display when that node is displayed.
In the views-block is a contextual filter, which filters on the Term List field, using:
When viewing this views-block, under PostgreSQL (but not under MySQL), we see this error:
Drupal\Core\Database\DatabaseExceptionWrapper: Exception in Test View[test_view]: SQLSTATE[22P02]: Invalid text representation: 7 ERROR: invalid input syntax for type bigint: "1,2,4" LINE 5: ...defield_terms_list.field_terms_list_target_id = '1,2,4')) ... ^: SELECT "node_field_data"."created" AS "node_field_data_created", "node_field_data"."nid" AS "nid" FROM "ess"."node_field_data" "node_field_data" LEFT JOIN "ess"."nodefield_terms_list" "nodefield_terms_list" ON node_field_data.nid = nodefield_terms_list.entity_id AND nodefield_terms_list.deleted = :views_join_condition_0 WHERE ((nodefield_terms_list.field_terms_list_target_id = :nodefield_terms_list_field_terms_list_target_id)) AND ("node_field_data"."status" = :db_condition_placeholder_1) ORDER BY "node_field_data_created" DESC NULLS LAST LIMIT 11 OFFSET 0; Array ( [:nodefield_terms_list_field_terms_list_target_id] => 1,2,4 [:db_condition_placeholder_1] => 1 [:views_join_condition_0] => 0 ) in main() (line 19 of index.php).
What I would expect to happen is what happens under MySQL: The contextual filter ends up filtering items out of the results list, and the view displays normally, without nasty SQL errors.
(This is likely related to issue 3268601 ( Views PostgreSQL Error | SQLSTATE[22P02]: Invalid text representation: 7 ERROR: invalid input syntax for type bigint 🐛 Views PostgreSQL Error | SQLSTATE[22P02]: Invalid text representation: 7 ERROR: invalid input syntax for type bigint Needs work ), which gets a similar error message under different circumstances.)
When you view this node, you'll see the SQL error.
Active
10.3 ✨
views.module
Changing tags per Issue tags field → and Issue tags -- special tags →