2017-11-02 07:05:11 -07:00

16 lines
567 B
YAML

desc: r.js inside reduce crashes server (#545)
table_variable_name: tbl
tests:
- cd: tbl.insert([{'id':0}, {'id':1}, {'id':2}])
- js: tbl.reduce(r.js("(function(x,y){return 1;})"))
py: tbl.reduce(r.js("(function(x,y){return 1;})"))
rb: tbl.reduce(r.js("(function(x,y){return 1;})"))
ot: 1
- js: tbl.reduce(r.js("(function(x,y){return {id:x[\"id\"] + y[\"id\"]};})"))
py: tbl.reduce(r.js("(function(x,y){return {id:x[\"id\"] + y[\"id\"]};})"))
rb: tbl.reduce(r.js("(function(x,y){return {id:x[\"id\"] + y[\"id\"]};})"))
ot: ({'id':3})