mariadb/storage/federated
Vicențiu Ciorbaru 08c852026d Apply clang-tidy to remove empty constructors / destructors
This patch is the result of running
run-clang-tidy -fix -header-filter=.* -checks='-*,modernize-use-equals-default' .

Code style changes have been done on top. The result of this change
leads to the following improvements:

1. Binary size reduction.
* For a -DBUILD_CONFIG=mysql_release build, the binary size is reduced by
  ~400kb.
* A raw -DCMAKE_BUILD_TYPE=Release reduces the binary size by ~1.4kb.

2. Compiler can better understand the intent of the code, thus it leads
   to more optimization possibilities. Additionally it enabled detecting
   unused variables that had an empty default constructor but not marked
   so explicitly.

   Particular change required following this patch in sql/opt_range.cc

   result_keys, an unused template class Bitmap now correctly issues
   unused variable warnings.

   Setting Bitmap template class constructor to default allows the compiler
   to identify that there are no side-effects when instantiating the class.
   Previously the compiler could not issue the warning as it assumed Bitmap
   class (being a template) would not be performing a NO-OP for its default
   constructor. This prevented the "unused variable warning".
2023-02-09 16:09:08 +02:00
..
CMakeLists.txt Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
ha_federated.cc Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
ha_federated.h Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
README

The files in this directory are not used by MariaDB

MariaDB uses the new federated storage engine that can be found in the
federatedx directory.

This directory is only kept around to make it easy to merge code from the
MySQL source repositories that uses the old and disabled federated code.