remove references to read_ahead_disable transaction option in bindings tests
This commit is contained in:
parent
1f4cca9db3
commit
b18f6200db
|
@ -1536,7 +1536,6 @@ struct UnitTestsFunc : InstructionFunc {
|
||||||
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_CAUSAL_READ_RISKY);
|
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_CAUSAL_READ_RISKY);
|
||||||
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_CAUSAL_WRITE_RISKY);
|
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_CAUSAL_WRITE_RISKY);
|
||||||
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_READ_YOUR_WRITES_DISABLE);
|
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_READ_YOUR_WRITES_DISABLE);
|
||||||
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_READ_AHEAD_DISABLE);
|
|
||||||
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_READ_SYSTEM_KEYS);
|
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_READ_SYSTEM_KEYS);
|
||||||
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_ACCESS_SYSTEM_KEYS);
|
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_ACCESS_SYSTEM_KEYS);
|
||||||
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_DURABILITY_DEV_NULL_IS_WEB_SCALE);
|
tr->setOption(FDBTransactionOption::FDB_TR_OPTION_DURABILITY_DEV_NULL_IS_WEB_SCALE);
|
||||||
|
|
|
@ -785,7 +785,6 @@ func (sm *StackMachine) processInst(idx int, inst tuple.Tuple) {
|
||||||
tr.Options().SetCausalReadRisky()
|
tr.Options().SetCausalReadRisky()
|
||||||
tr.Options().SetCausalWriteRisky()
|
tr.Options().SetCausalWriteRisky()
|
||||||
tr.Options().SetReadYourWritesDisable()
|
tr.Options().SetReadYourWritesDisable()
|
||||||
tr.Options().SetReadAheadDisable()
|
|
||||||
tr.Options().SetReadSystemKeys()
|
tr.Options().SetReadSystemKeys()
|
||||||
tr.Options().SetAccessSystemKeys()
|
tr.Options().SetAccessSystemKeys()
|
||||||
tr.Options().SetDurabilityDevNullIsWebScale()
|
tr.Options().SetDurabilityDevNullIsWebScale()
|
||||||
|
|
|
@ -477,7 +477,6 @@ public class AsyncStackTester {
|
||||||
tr.options().setCausalReadRisky();
|
tr.options().setCausalReadRisky();
|
||||||
tr.options().setCausalWriteRisky();
|
tr.options().setCausalWriteRisky();
|
||||||
tr.options().setReadYourWritesDisable();
|
tr.options().setReadYourWritesDisable();
|
||||||
tr.options().setReadAheadDisable();
|
|
||||||
tr.options().setReadSystemKeys();
|
tr.options().setReadSystemKeys();
|
||||||
tr.options().setAccessSystemKeys();
|
tr.options().setAccessSystemKeys();
|
||||||
tr.options().setDurabilityDevNullIsWebScale();
|
tr.options().setDurabilityDevNullIsWebScale();
|
||||||
|
|
|
@ -427,7 +427,6 @@ public class StackTester {
|
||||||
tr.options().setCausalReadRisky();
|
tr.options().setCausalReadRisky();
|
||||||
tr.options().setCausalWriteRisky();
|
tr.options().setCausalWriteRisky();
|
||||||
tr.options().setReadYourWritesDisable();
|
tr.options().setReadYourWritesDisable();
|
||||||
tr.options().setReadAheadDisable();
|
|
||||||
tr.options().setReadSystemKeys();
|
tr.options().setReadSystemKeys();
|
||||||
tr.options().setAccessSystemKeys();
|
tr.options().setAccessSystemKeys();
|
||||||
tr.options().setDurabilityDevNullIsWebScale();
|
tr.options().setDurabilityDevNullIsWebScale();
|
||||||
|
|
|
@ -136,7 +136,6 @@ def test_options(tr):
|
||||||
tr.options.set_causal_read_risky()
|
tr.options.set_causal_read_risky()
|
||||||
tr.options.set_causal_write_risky()
|
tr.options.set_causal_write_risky()
|
||||||
tr.options.set_read_your_writes_disable()
|
tr.options.set_read_your_writes_disable()
|
||||||
tr.options.set_read_ahead_disable()
|
|
||||||
tr.options.set_read_system_keys()
|
tr.options.set_read_system_keys()
|
||||||
tr.options.set_access_system_keys()
|
tr.options.set_access_system_keys()
|
||||||
tr.options.set_durability_dev_null_is_web_scale()
|
tr.options.set_durability_dev_null_is_web_scale()
|
||||||
|
|
|
@ -460,7 +460,6 @@ class Tester
|
||||||
tr.options.set_causal_read_risky
|
tr.options.set_causal_read_risky
|
||||||
tr.options.set_causal_write_risky
|
tr.options.set_causal_write_risky
|
||||||
tr.options.set_read_your_writes_disable
|
tr.options.set_read_your_writes_disable
|
||||||
tr.options.set_read_ahead_disable
|
|
||||||
tr.options.set_read_system_keys
|
tr.options.set_read_system_keys
|
||||||
tr.options.set_access_system_keys
|
tr.options.set_access_system_keys
|
||||||
tr.options.set_durability_dev_null_is_web_scale
|
tr.options.set_durability_dev_null_is_web_scale
|
||||||
|
|
Loading…
Reference in New Issue