This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ext/librethinkdbxx/test/upstream/regression/5542.py.yaml
2017-11-02 07:05:11 -07:00

12 lines
366 B
YAML

desc: r.minval can't be confused with an empty array. This used to crash.
table_variable_name: tbl
tests:
- py: tbl.index_create("v")
ot: {"created": 1}
- py: tbl.index_wait("v")
- py: tbl.insert({"id": 1, "v": []})
ot: partial({"inserted": 1})
- py: tbl.between([r.minval], [r.maxval], left_bound="open", index="v").count()
ot: 0