Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
PSDI Army
yii2
Commits
1a9d5a11
Commit
1a9d5a11
authored
Dec 03, 2013
by
Paul Klimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mongo Collection "deleteAllIndexes" return result fixed.
parent
e3c281f3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Collection.php
extensions/mongo/Collection.php
+1
-1
CollectionTest.php
tests/unit/extensions/mongo/CollectionTest.php
+1
-1
No files found.
extensions/mongo/Collection.php
View file @
1a9d5a11
...
@@ -165,7 +165,7 @@ class Collection extends Object
...
@@ -165,7 +165,7 @@ class Collection extends Object
try
{
try
{
$result
=
$this
->
mongoCollection
->
deleteIndexes
();
$result
=
$this
->
mongoCollection
->
deleteIndexes
();
$this
->
tryResultError
(
$result
);
$this
->
tryResultError
(
$result
);
return
$result
[
'nIndexesWas'
]
-
1
;
return
$result
[
'nIndexesWas'
];
}
catch
(
\Exception
$e
)
{
}
catch
(
\Exception
$e
)
{
Yii
::
endProfile
(
$token
,
__METHOD__
);
Yii
::
endProfile
(
$token
,
__METHOD__
);
throw
new
Exception
(
$e
->
getMessage
(),
(
int
)
$e
->
getCode
(),
$e
);
throw
new
Exception
(
$e
->
getMessage
(),
(
int
)
$e
->
getCode
(),
$e
);
...
...
tests/unit/extensions/mongo/CollectionTest.php
View file @
1a9d5a11
...
@@ -270,7 +270,7 @@ class CollectionTest extends MongoTestCase
...
@@ -270,7 +270,7 @@ class CollectionTest extends MongoTestCase
{
{
$collection
=
$this
->
getConnection
()
->
getCollection
(
'customer'
);
$collection
=
$this
->
getConnection
()
->
getCollection
(
'customer'
);
$collection
->
createIndex
(
'name'
);
$collection
->
createIndex
(
'name'
);
$this
->
assertEquals
(
1
,
$collection
->
dropAllIndexes
());
$this
->
assertEquals
(
2
,
$collection
->
dropAllIndexes
());
$indexInfo
=
$collection
->
mongoCollection
->
getIndexInfo
();
$indexInfo
=
$collection
->
mongoCollection
->
getIndexInfo
();
$this
->
assertEquals
(
1
,
count
(
$indexInfo
));
$this
->
assertEquals
(
1
,
count
(
$indexInfo
));
}
}
...
...
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