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/522.py.yaml
2017-11-02 07:05:11 -07:00

8 lines
202 B
YAML

desc: Skip after orderby causes use-after-free (#522)
table_variable_name: tbl
tests:
- cd: tbl.insert([{'id':0}, {'id':1}, {'id':2}])
- py: tbl.order_by('id').skip(1)
ot: [{'id':1}, {'id':2}]