summaryrefslogtreecommitdiff
path: root/ext/librethinkdbxx/test/upstream/regression/522.py.yaml
blob: 69ca4e1d85e1745374629230319076145a20c947 (plain)
1
2
3
4
5
6
7
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}]