diff --git a/core/lib/Drupal/Core/Database/Query/Condition.php b/core/lib/Drupal/Core/Database/Query/Condition.php index 5cfd1a1100d7658ea6d3a113c9f46e9ed42411d4..616255db2f76a46eefe2e128e5b059f11f5a6e50 100644 --- a/core/lib/Drupal/Core/Database/Query/Condition.php +++ b/core/lib/Drupal/Core/Database/Query/Condition.php @@ -106,8 +106,14 @@ public function condition($field, $value = NULL, $operator = '=') { throw new InvalidQueryException(sprintf("Query condition '%s %s ()' cannot be empty.", $field, $operator)); } if (is_array($value) && in_array($operator, ['=', '<', '>', '<=', '>=', 'IS NULL', 'IS NOT NULL'], TRUE)) { - $value = implode(', ', $value); - throw new InvalidQueryException(sprintf("Query condition '%s %s %s' must have an array compatible operator.", $field, $operator, $value)); + if (count($value) > 1) { + $value = implode(', ', $value); + throw new InvalidQueryException(sprintf("Query condition '%s %s %s' must have an array compatible operator.", $field, $operator, $value)); + } + else { + $value = $value[0]; + @trigger_error('Calling ' . __METHOD__ . '() without an array compatible operator is deprecated in drupal:10.1.0 and will be required in drupal:11.0.0. See https://www.drupal.org/node/3350985', E_USER_DEPRECATED); + } } $this->conditions[] = [ diff --git a/core/tests/Drupal/KernelTests/Core/Database/SelectTest.php b/core/tests/Drupal/KernelTests/Core/Database/SelectTest.php index 798b4dc5640c8aeb3148a0b394b56abe6a897b04..777c8e9b8220002330d53529311985c40afdeb41 100644 --- a/core/tests/Drupal/KernelTests/Core/Database/SelectTest.php +++ b/core/tests/Drupal/KernelTests/Core/Database/SelectTest.php @@ -627,4 +627,18 @@ public function testNonArrayOperatorWithArrayValueCondition($operator, $operator ->execute(); } + /** + * Tests thrown exception for non array operator conditions with array value. + * + * @dataProvider providerNonArrayOperatorWithArrayValueCondition + * @group legacy + */ + public function testNonArrayOperatorWithArrayValueConditionDeprecated($operator, $operator_in_exception_message) { + $this->expectDeprecation('Calling Drupal\Core\Database\Query\Condition::condition() without an array compatible operator is deprecated in drupal:10.1.0 and will be required in drupal:11.0.0. See https://www.drupal.org/node/3350985'); + $this->connection->select('test', 't') + ->fields('t') + ->condition('age', [26], $operator) + ->execute(); + } + }