mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-15 15:31:58 +00:00
9 lines
582 B
YAML
9 lines
582 B
YAML
desc: 4582 -- non-deterministic arguments to `replace` and `update`.
|
|
table_variable_name: tbl
|
|
tests:
|
|
- cd: tbl.get(0).replace(tbl.get(0))
|
|
ot: err('ReqlQueryLogicError','Could not prove argument deterministic. Maybe you want to use the non_atomic flag?')
|
|
- cd: tbl.get(0).update(tbl.get(0))
|
|
ot: err('ReqlQueryLogicError','Could not prove argument deterministic. Maybe you want to use the non_atomic flag?')
|
|
- cd: tbl.replace(r.args([tbl.get(0)]))
|
|
ot: err('ReqlQueryLogicError','Could not prove argument deterministic. Maybe you want to use the non_atomic flag?') |