Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
32640ae4
Commit
32640ae4
authored
Jan 30, 2015
by
Steve Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix test case
parent
57d2a77e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
QueryBuilderTest.php
tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php
+7
-6
No files found.
tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php
View file @
32640ae4
...
@@ -624,9 +624,9 @@ class QueryBuilderTest extends \Doctrine\Tests\DbalTestCase
...
@@ -624,9 +624,9 @@ class QueryBuilderTest extends \Doctrine\Tests\DbalTestCase
}
}
/**
/**
* @group DBAL-
790
* @group DBAL-
1137
*/
*/
public
function
testSelectWithJoinsWithNo
t
UniqueAliases
()
public
function
testSelectWithJoinsWithNo
n
UniqueAliases
()
{
{
$qb
=
new
QueryBuilder
(
$this
->
conn
);
$qb
=
new
QueryBuilder
(
$this
->
conn
);
...
@@ -636,10 +636,11 @@ class QueryBuilderTest extends \Doctrine\Tests\DbalTestCase
...
@@ -636,10 +636,11 @@ class QueryBuilderTest extends \Doctrine\Tests\DbalTestCase
->
join
(
'a'
,
'table_b'
,
'b'
,
'a.fk_b = b.id'
)
->
join
(
'a'
,
'table_b'
,
'b'
,
'a.fk_b = b.id'
)
->
join
(
'b'
,
'table_a'
,
'a'
,
'a.fk_b = b.id'
);
->
join
(
'b'
,
'table_a'
,
'a'
,
'a.fk_b = b.id'
);
$this
->
setExpectedException
(
'Doctrine\DBAL\Query\QueryException'
);
$this
->
setExpectedException
(
$this
->
assertEquals
(
'Doctrine\DBAL\Query\QueryException'
,
'dumb string'
,
"The given alias 'b' is not unique in FROM and JOIN clause table. The currently registered aliases are: a, b."
$qb
->
getSQL
()
);
);
$qb
->
getSQL
();
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment