You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Sergei Golubchik d0ce9cb832 MDEV-4468 Assertion `error != 0' fails or timeout occurs on select from a FEDERATED table which points at a non-existent table 13 years ago
..
AUTHORS Added federatedx storage engine 16 years ago
CMakeLists.txt merge. 15 years ago
ChangeLog Added federatedx storage engine 16 years ago
FAQ Added federatedx storage engine 16 years ago
README Added federatedx storage engine 16 years ago
README.windows Added federatedx storage engine 16 years ago
TODO Added federatedx storage engine 16 years ago
federatedx_io.cc use PSI wrappers in aria and other non-MySQL code 15 years ago
federatedx_io_mysql.cc MDEV-4468 Assertion `error != 0' fails or timeout occurs on select from a FEDERATED table which points at a non-existent table 13 years ago
federatedx_io_null.cc lots of post-merge changes 15 years ago
federatedx_probes.h Added federatedx storage engine 16 years ago
federatedx_txn.cc use PSI wrappers in aria and other non-MySQL code 15 years ago
ha_federatedx.cc Fixed some cache variables that could be set to higher value than what the code supported (size_t) 13 years ago
ha_federatedx.h use PSI wrappers in aria and other non-MySQL code 15 years ago

README

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