Loading core/tests/Drupal/KernelTests/Core/Database/SelectSubqueryTest.php +2 −2 Original line number Diff line number Diff line Loading @@ -232,7 +232,7 @@ public function testExistsSubquerySelect() { // Subquery to {test_people}. $subquery = $this->connection->select('test_people', 'tp') ->fields('tp', ['name']) ->where('[tp].[name] = [t].[name]'); ->where('[tp].[age] = [t].[age]'); $query->exists($subquery); $result = $query->execute(); Loading Loading @@ -263,7 +263,7 @@ public function testNotExistsSubquerySelect() { // Subquery to {test_people}. $subquery = $this->connection->select('test_people', 'tp') ->fields('tp', ['name']) ->where('[tp].[name] = [t].[name]'); ->where('[tp].[age] = [t].[age]'); $query->notExists($subquery); // Ensure that we got the right number of records. Loading Loading
core/tests/Drupal/KernelTests/Core/Database/SelectSubqueryTest.php +2 −2 Original line number Diff line number Diff line Loading @@ -232,7 +232,7 @@ public function testExistsSubquerySelect() { // Subquery to {test_people}. $subquery = $this->connection->select('test_people', 'tp') ->fields('tp', ['name']) ->where('[tp].[name] = [t].[name]'); ->where('[tp].[age] = [t].[age]'); $query->exists($subquery); $result = $query->execute(); Loading Loading @@ -263,7 +263,7 @@ public function testNotExistsSubquerySelect() { // Subquery to {test_people}. $subquery = $this->connection->select('test_people', 'tp') ->fields('tp', ['name']) ->where('[tp].[name] = [t].[name]'); ->where('[tp].[age] = [t].[age]'); $query->notExists($subquery); // Ensure that we got the right number of records. Loading