// Check whether the TransactionEstimator *really* thinks that we should
// give it updates about this txn. If the flag is false, then we'll
// check whether the updates are enabled in the HStoreConf parameters
if (t_state.shouldAllowUpdates() == false) {
if (predict_partitions.size() == 1) {
if (hstore_conf.site.markov_singlep_updates == false) t_state.disableUpdates();
}
else if (hstore_conf.site.markov_dtxn_updates == false) {
t_state.disableUpdates();
}
}