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
c7ac5650
Commit
c7ac5650
authored
Mar 15, 2010
by
guilhermeblanco
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Fixed issue with Subselect not handling well inheritance type JOINED.
parent
a53c2fbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
SqlWalker.php
lib/Doctrine/ORM/Query/SqlWalker.php
+5
-1
No files found.
lib/Doctrine/ORM/Query/SqlWalker.php
View file @
c7ac5650
...
...
@@ -1012,12 +1012,16 @@ class SqlWalker implements TreeWalker
$identificationVarDecls
=
$subselectFromClause
->
identificationVariableDeclarations
;
$firstIdentificationVarDecl
=
$identificationVarDecls
[
0
];
$rangeDecl
=
$firstIdentificationVarDecl
->
rangeVariableDeclaration
;
$class
=
$this
->
_em
->
getClassMetadata
(
$rangeDecl
->
abstractSchemaName
);
$dqlAlias
=
$rangeDecl
->
aliasIdentificationVariable
;
$class
=
$this
->
_em
->
getClassMetadata
(
$rangeDecl
->
abstractSchemaName
);
$sql
=
' FROM '
.
$class
->
getQuotedTableName
(
$this
->
_platform
)
.
' '
.
$this
->
getSqlTableAlias
(
$class
->
primaryTable
[
'name'
],
$dqlAlias
);
if
(
$class
->
isInheritanceTypeJoined
())
{
$sql
.=
$this
->
_generateClassTableInheritanceJoins
(
$class
,
$dqlAlias
);
}
foreach
(
$firstIdentificationVarDecl
->
joinVariableDeclarations
as
$joinVarDecl
)
{
$sql
.=
$this
->
walkJoinVariableDeclaration
(
$joinVarDecl
);
}
...
...
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