summaryrefslogtreecommitdiff
path: root/db/query.h
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2008-12-28 20:28:49 -0500
committerAaron <aaron@10gen.com>2008-12-28 20:28:49 -0500
commitb7cbd301124045fccab665f939a68d703e70629b (patch)
treee7796053c090b4ee242ef5d1d960e6d78f57ec2b /db/query.h
parentb53f593e1bc3d13fc831089541f23116fcc1803a (diff)
downloadmongo-b7cbd301124045fccab665f939a68d703e70629b.tar.gz
Replace tab indentation with spaces
Diffstat (limited to 'db/query.h')
-rw-r--r--db/query.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/db/query.h b/db/query.h
index 1e0343f8f90..eff237ff2ad 100644
--- a/db/query.h
+++ b/db/query.h
@@ -2,16 +2,16 @@
/**
* Copyright (C) 2008 10gen Inc.
-*
+*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
-*
+*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
-*
+*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
@@ -23,7 +23,7 @@
#include "jsobj.h"
#include "storage.h"
-/* db request message format
+/* db request message format
unsigned opid; // arbitary; will be echoed back
byte operation;
@@ -33,7 +33,7 @@
dbInsert:
string collection;
- a series of JSObjects
+ a series of JSObjects
dbDelete:
string collection;
int flags=0; // 1=DeleteSingle
@@ -76,7 +76,7 @@
*/
/* the field 'resultFlags' above */
-enum {
+enum {
/* returned, with zero results, when getMore is called but the cursor id is not valid at the server. */
ResultFlag_CursorNotFound = 1
};
@@ -88,9 +88,9 @@ enum {
QueryResult* getMore(const char *ns, int ntoreturn, long long cursorid);
// caller must free() returned QueryResult.
-QueryResult* runQuery(Message&, const char *ns, int ntoskip, int ntoreturn,
- BSONObj j, auto_ptr< set<string> > fieldFilter,
- stringstream&, int queryOptions);
+QueryResult* runQuery(Message&, const char *ns, int ntoskip, int ntoreturn,
+ BSONObj j, auto_ptr< set<string> > fieldFilter,
+ stringstream&, int queryOptions);
void updateObjects(const char *ns, BSONObj updateobj, BSONObj pattern, bool upsert, stringstream& ss);