diff options
author | Oleg Smirnov <olernov@gmail.com> | 2023-01-02 14:46:46 +0700 |
---|---|---|
committer | Oleg Smirnov <olernov@gmail.com> | 2023-01-02 14:46:50 +0700 |
commit | 657ddf17491740f652f011458f03366e70c4728f (patch) | |
tree | b0d31279d3848424dab3a1260a59fcd2cebdc1b4 /storage/csv | |
parent | 92665b862b479f6582e3a15247bfc812e59e7e34 (diff) | |
download | mariadb-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 'storage/csv')
-rw-r--r-- | storage/csv/ha_tina.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/storage/csv/ha_tina.h b/storage/csv/ha_tina.h index 3178b66fd64..043183444da 100644 --- a/storage/csv/ha_tina.h +++ b/storage/csv/ha_tina.h @@ -176,8 +176,5 @@ public: int encode_quote(const uchar *buf); int find_current_row(uchar *buf); int chain_append(); - - void start_operations_batch() {} - void end_operations_batch() {} }; |