blob: 734f1a5dd7bec538364032b496c77530df2509b6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
desc: fix type of `limit` and `zip` on streams (#678)
table_variable_name: tbl
tests:
- rb: tbl.map{|x| x}.limit(1).typeof
ot: ("STREAM")
- rb: r([1]).map{|x| x}.limit(1).typeof
ot: ("ARRAY")
|