diff options
author | Eliot Horowitz <eliot@10gen.com> | 2011-04-12 22:06:34 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2011-04-14 20:00:18 -0400 |
commit | e46920d6b39a327b05f52d27061548b55316ca9f (patch) | |
tree | 9e0db102b0c2253d795457b892d9d3cb273607d2 /scripting/engine.cpp | |
parent | 6d4891d676f1a4c16a35180a9225baee24e67b0e (diff) | |
download | mongo-e46920d6b39a327b05f52d27061548b55316ca9f.tar.gz |
starting to work on sharding helper (sh)
Diffstat (limited to 'scripting/engine.cpp')
-rw-r--r-- | scripting/engine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripting/engine.cpp b/scripting/engine.cpp index 8fd82652973..f995f7a4079 100644 --- a/scripting/engine.cpp +++ b/scripting/engine.cpp @@ -248,11 +248,13 @@ namespace mongo { extern const JSFile mr; extern const JSFile query; extern const JSFile utils; + extern const JSFile utils_sh; } void Scope::execCoreFiles() { // keeping same order as in SConstruct execSetup(JSFiles::utils); + execSetup(JSFiles::utils_sh); execSetup(JSFiles::db); execSetup(JSFiles::mongo); execSetup(JSFiles::mr); |