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

10 lines
450 B
YAML

desc: 4431 -- detect `use_outdated` optarg
tests:
- cd: r.table('test')
runopts:
use_outdated: true
ot: err('ReqlQueryLogicError', 'The `use_outdated` optarg is no longer supported. Use the `read_mode` optarg instead.')
- py: r.table('test', use_outdated=True)
cd: r.table('test', {use_outdated:true})
ot: err('ReqlQueryLogicError', 'The `use_outdated` optarg is no longer supported. Use the `read_mode` optarg instead.')