diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-06-09 11:08:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 11:08:36 +0200 |
commit | de35da37ceffe7468c1e30d6067f99b881aff2b5 (patch) | |
tree | 88f7ab1d68d2e6fa464efbfceb40127355efd0c2 /tests | |
parent | 19712e2773157c2f249e3f124b0d5e2adff7a1eb (diff) | |
parent | c68718f90cfb8a6d704c568ef47e2a799255659d (diff) | |
download | nextcloud-server-de35da37ceffe7468c1e30d6067f99b881aff2b5.tar.gz nextcloud-server-de35da37ceffe7468c1e30d6067f99b881aff2b5.zip |
Merge pull request #21208 from nextcloud/dependabot/composer/doctrine/dbal-2.10.2
Bump doctrine/dbal from 2.9.2 to 2.10.2
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/DB/QueryBuilder/QueryBuilderTest.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/lib/DB/QueryBuilder/QueryBuilderTest.php b/tests/lib/DB/QueryBuilder/QueryBuilderTest.php index a9542e2d616..7b1fee38db3 100644 --- a/tests/lib/DB/QueryBuilder/QueryBuilderTest.php +++ b/tests/lib/DB/QueryBuilder/QueryBuilderTest.php @@ -516,12 +516,12 @@ class QueryBuilderTest extends \Test\TestCase { [ 'd1', 'data2', null, null, ['`d1`' => [['joinType' => 'inner', 'joinTable' => '`*PREFIX*data2`', 'joinAlias' => null, 'joinCondition' => null]]], - '`*PREFIX*data1` `d1` INNER JOIN `*PREFIX*data2` ON ' + '`*PREFIX*data1` `d1` INNER JOIN `*PREFIX*data2` ' ], [ 'd1', 'data2', 'd2', null, ['`d1`' => [['joinType' => 'inner', 'joinTable' => '`*PREFIX*data2`', 'joinAlias' => '`d2`', 'joinCondition' => null]]], - '`*PREFIX*data1` `d1` INNER JOIN `*PREFIX*data2` `d2` ON ' + '`*PREFIX*data1` `d1` INNER JOIN `*PREFIX*data2` `d2`' ], [ 'd1', 'data2', 'd2', '`d1`.`field1` = `d2`.`field2`', @@ -597,12 +597,12 @@ class QueryBuilderTest extends \Test\TestCase { [ 'd1', 'data2', null, null, ['`d1`' => [['joinType' => 'left', 'joinTable' => '`*PREFIX*data2`', 'joinAlias' => null, 'joinCondition' => null]]], - '`*PREFIX*data1` `d1` LEFT JOIN `*PREFIX*data2` ON ' + '`*PREFIX*data1` `d1` LEFT JOIN `*PREFIX*data2` ' ], [ 'd1', 'data2', 'd2', null, ['`d1`' => [['joinType' => 'left', 'joinTable' => '`*PREFIX*data2`', 'joinAlias' => '`d2`', 'joinCondition' => null]]], - '`*PREFIX*data1` `d1` LEFT JOIN `*PREFIX*data2` `d2` ON ' + '`*PREFIX*data1` `d1` LEFT JOIN `*PREFIX*data2` `d2`' ], [ 'd1', 'data2', 'd2', '`d1`.`field1` = `d2`.`field2`', @@ -647,12 +647,12 @@ class QueryBuilderTest extends \Test\TestCase { [ 'd1', 'data2', null, null, ['`d1`' => [['joinType' => 'right', 'joinTable' => '`*PREFIX*data2`', 'joinAlias' => null, 'joinCondition' => null]]], - '`*PREFIX*data1` `d1` RIGHT JOIN `*PREFIX*data2` ON ' + '`*PREFIX*data1` `d1` RIGHT JOIN `*PREFIX*data2` ' ], [ 'd1', 'data2', 'd2', null, ['`d1`' => [['joinType' => 'right', 'joinTable' => '`*PREFIX*data2`', 'joinAlias' => '`d2`', 'joinCondition' => null]]], - '`*PREFIX*data1` `d1` RIGHT JOIN `*PREFIX*data2` `d2` ON ' + '`*PREFIX*data1` `d1` RIGHT JOIN `*PREFIX*data2` `d2`' ], [ 'd1', 'data2', 'd2', '`d1`.`field1` = `d2`.`field2`', |