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
24d8e942
Commit
24d8e942
authored
Mar 28, 2010
by
beberlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] DDC-478 - Fix QueryBuilder Expr\Between Support
parent
49621286
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Expr.php
lib/Doctrine/ORM/Query/Expr.php
+1
-1
ExprTest.php
tests/Doctrine/Tests/ORM/Query/ExprTest.php
+1
-1
No files found.
lib/Doctrine/ORM/Query/Expr.php
View file @
24d8e942
...
...
@@ -544,7 +544,7 @@ class Expr
*/
public
function
between
(
$val
,
$x
,
$y
)
{
return
new
Expr\Func
(
'BETWEEN'
,
array
(
$val
,
$x
,
$y
))
;
return
$val
.
' BETWEEN '
.
$x
.
' AND '
.
$y
;
}
/**
...
...
tests/Doctrine/Tests/ORM/Query/ExprTest.php
View file @
24d8e942
...
...
@@ -232,7 +232,7 @@ class ExprTest extends \Doctrine\Tests\OrmTestCase
public
function
testBetweenExpr
()
{
$this
->
assertEquals
(
'
BETWEEN(u.id, 3, 6)
'
,
(
string
)
$this
->
_expr
->
between
(
'u.id'
,
3
,
6
));
$this
->
assertEquals
(
'
u.id BETWEEN 3 AND 6
'
,
(
string
)
$this
->
_expr
->
between
(
'u.id'
,
3
,
6
));
}
public
function
testTrimExpr
()
...
...
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