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
5f1a4074
Commit
5f1a4074
authored
Nov 20, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
fb8498e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
Query.php
lib/Doctrine/Query.php
+6
-2
No files found.
lib/Doctrine/Query.php
View file @
5f1a4074
...
@@ -530,7 +530,11 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
...
@@ -530,7 +530,11 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
}
}
$field
=
$this
->
getShortAlias
(
$table
->
getTableName
())
.
'.'
.
$table
->
getIdentifier
();
$field
=
$this
->
getShortAlias
(
$table
->
getTableName
())
.
'.'
.
$table
->
getIdentifier
();
array_unshift
(
$this
->
parts
[
'where'
],
$field
.
' IN ('
.
$subquery
.
')'
);
// only append the subquery if it actually contains something
if
(
$subquery
!==
''
)
array_unshift
(
$this
->
parts
[
'where'
],
$field
.
' IN ('
.
$subquery
.
')'
);
$modifyLimit
=
false
;
$modifyLimit
=
false
;
}
}
}
}
...
@@ -594,7 +598,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
...
@@ -594,7 +598,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
if
(
!
in_array
(
$e
[
3
],
$this
->
subqueryAliases
)
&&
!
in_array
(
$e
[
2
],
$this
->
subqueryAliases
))
if
(
!
in_array
(
$e
[
3
],
$this
->
subqueryAliases
)
&&
!
in_array
(
$e
[
2
],
$this
->
subqueryAliases
))
continue
;
continue
;
}
}
$subquery
.=
' '
.
$part
;
$subquery
.=
' '
.
$part
;
...
...
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