mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-14 23:11:58 +00:00
8 lines
202 B
YAML
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}]
|