mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-11 05:31:09 +00:00
11 lines
362 B
YAML
11 lines
362 B
YAML
desc: concatmap that doesn't return stream crashes server (#568)
|
|
table_variable_name: tbl
|
|
tests:
|
|
|
|
- cd: tbl.insert({'name':'Jim Brown'})
|
|
|
|
- js: tbl.concatMap(function(rec){return rec("name")})
|
|
py: tbl.concat_map(lambda rec:rec["name"])
|
|
rb: tbl.concat_map {|rec| rec[:name]}
|
|
ot: err("ReqlQueryLogicError", "Cannot convert STRING to SEQUENCE", [])
|