summaryrefslogtreecommitdiff
path: root/sql/handler.cc
diff options
context:
space:
mode:
authorOleg Smirnov <olernov@gmail.com>2023-01-02 14:46:46 +0700
committerOleg Smirnov <olernov@gmail.com>2023-01-02 14:46:50 +0700
commit657ddf17491740f652f011458f03366e70c4728f (patch)
treeb0d31279d3848424dab3a1260a59fcd2cebdc1b4 /sql/handler.cc
parent92665b862b479f6582e3a15247bfc812e59e7e34 (diff)
downloadmariadb-git-10.9-MDEV-16232.tar.gz
MDEV-16232: Use fewer mini-transactions10.9-MDEV-16232
SQL Layer support #3. Add checks of applicability for UPDATEs and DELETEs. Rename "operations batch" to "mini transactions" to disambiguate the term "batch" which is already used. Temporary disable mini-transactions for SELECTs.
Diffstat (limited to 'sql/handler.cc')
-rw-r--r--sql/handler.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/sql/handler.cc b/sql/handler.cc
index 51222146b35..2f2c7064e6a 100644
--- a/sql/handler.cc
+++ b/sql/handler.cc
@@ -8661,13 +8661,3 @@ Table_scope_and_contents_source_st::fix_period_fields(THD *thd,
}
return false;
}
-
-void handler::ha_start_operations_batch() // currently useless??
-{
- table->file->start_operations_batch();
-}
-
-void handler::ha_end_operations_batch() // currently useless??
-{
- table->file->end_operations_batch();
-}