diff options
author | Damien F. Katz <damien@apache.org> | 2008-08-08 17:46:48 +0000 |
---|---|---|
committer | Damien F. Katz <damien@apache.org> | 2008-08-08 17:46:48 +0000 |
commit | a33cf09319d0b174ec9c509c815da160b7091ab3 (patch) | |
tree | c80e75dfba3b7204968ee5a5b938943cfed1a2c1 /share/www/script | |
parent | 986302c54df1bdb4be3dc1d1a4d5a9f34e6af50d (diff) |
COUCHDB-103 Fixed incompatibilty with new javascript (1.8) that no longer supports sealing document, making them immutable. The problem is arrays can no longer be sealed, and an error is generated when it is attempted. The fix here is to simply remove the document sealing, and map function placed in the same design document will have to be trustworthy that they don't modify the document (the same document is passed to multiple map functions). Non-trustworthy map functions can be placed in their own design documents, they will be run in isolation.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@684023 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script')
-rw-r--r-- | share/www/script/couch_tests.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index 32a53909..539b9a12 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -1072,7 +1072,7 @@ var tests = { var doc = {integer: 1, string: "1", array: [1, 2, 3]}; T(db.save(doc).ok); - +/* // make sure that attempting to change the document throws an error var results = db.query(function(doc) { doc.integer = 2; @@ -1085,7 +1085,7 @@ var tests = { emit(null, doc); }); T(results.total_rows == 0); - +*/ // make sure that a view cannot invoke interpreter internals such as the // garbage collector var results = db.query(function(doc) { |