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
3949fddc
Commit
3949fddc
authored
Aug 06, 2009
by
guilhermeblanco
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Added missing quoteIdentifiers to SqlWalker
parent
c1744d2e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
21 deletions
+6
-21
AggregateExpression.php
lib/Doctrine/ORM/Query/AST/AggregateExpression.php
+6
-21
No files found.
lib/Doctrine/ORM/Query/AST/AggregateExpression.php
View file @
3949fddc
...
...
@@ -28,30 +28,15 @@ namespace Doctrine\ORM\Query\AST;
*/
class
AggregateExpression
extends
Node
{
p
rivate
$_
functionName
;
p
rivate
$_
pathExpression
;
p
rivate
$_
isDistinct
=
false
;
// Some aggregate expressions support distinct, eg COUNT
p
ublic
$
functionName
;
p
ublic
$
pathExpression
;
p
ublic
$
isDistinct
=
false
;
// Some aggregate expressions support distinct, eg COUNT
public
function
__construct
(
$functionName
,
$pathExpression
,
$isDistinct
)
{
$this
->
_functionName
=
$functionName
;
$this
->
_pathExpression
=
$pathExpression
;
$this
->
_isDistinct
=
$isDistinct
;
}
public
function
getPathExpression
()
{
return
$this
->
_pathExpression
;
}
public
function
isDistinct
()
{
return
$this
->
_isDistinct
;
}
public
function
getFunctionName
()
{
return
$this
->
_functionName
;
$this
->
functionName
=
$functionName
;
$this
->
pathExpression
=
$pathExpression
;
$this
->
isDistinct
=
$isDistinct
;
}
public
function
dispatch
(
$sqlWalker
)
...
...
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