mariadb/storage/federatedx
Sergei Golubchik aed5928207 cleanup: extract transaction-related part of handlerton
into a separate transaction_participant structure

handlerton inherits it, so handlerton itself doesn't change.
but entities that only need to participate in a transaction,
like binlog or online alter log, use a transaction_participant
and no longer need to pretend to be a full-blown but invisible
storage engine which doesn't support create table.
2024-11-05 14:00:50 -08:00
..
AUTHORS Lintian complains on spelling error 2019-12-02 12:41:13 +02:00
ChangeLog
CMakeLists.txt Merge branch '10.5' into 10.6 2022-11-02 14:33:20 +01:00
FAQ
federatedx_io.cc cleanup: remove unconditional #ifdef's 2024-11-05 14:00:47 -08:00
federatedx_io_mysql.cc cleanup: remove unconditional #ifdef's 2024-11-05 14:00:47 -08:00
federatedx_io_null.cc cleanup: remove unconditional #ifdef's 2024-11-05 14:00:47 -08:00
federatedx_probes.h
federatedx_pushdown.cc MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp() 2024-04-18 15:22:10 +04:00
federatedx_pushdown.h Merge branch '10.11' into 11.1 2024-07-08 22:40:16 +02:00
federatedx_txn.cc cleanup: remove unconditional #ifdef's 2024-11-05 14:00:47 -08:00
ha_federatedx.cc cleanup: extract transaction-related part of handlerton 2024-11-05 14:00:50 -08:00
ha_federatedx.h cleanup: extract transaction-related part of handlerton 2024-11-05 14:00:50 -08:00
README
README.windows

This is the FederatedX Storage Engine, developed as an external storage engine.

NOTE:

The following is only relevant if you use it for MySQL.  MariaDB already comes
with the latest version of FederatedX.

To install, grab a copy of the mysql source code and run this:

./configure --with-mysql=/path/to/src/mysql-5.x --libdir=/usr/local/lib/mysql/

make install

And then inside of MySQL:

mysql> INSTALL PLUGIN federatedx SONAME 'libfederatedx_engine.so';

mysql> CREATE TABLE `d` (`a` varchar(125), b text, primary key(a)) ENGINE=FEDERATEDX CONNECTION="mysql://root@host/schema/table"

or 

mysql> CREATE TABLE `d` (`a` varchar(125), b text, primary key(a)) ENGINE=FEDERATEDX CONNECTION="server" CHARSET=latin1;

You will probably need to edit the Makefile.am in the src/ tree if you want
to build on anything other then Linux (and the Makefile assumes that the
server was not compiled for debug). The reason for the two possible
configure lines is that libdir is dependent on where MySQL was installed. If
you run the "INSTALL PLUGIN ..." and you get a file not found, check that
your configured this directory correctly.

For Solaris you can enable DTrace probes by adding to configure
--enable-dtrace