The independent repository of MySQL 5.5 Example Storage Engine. You're able to start developing brand-new storage engine from here.
This repository supports:
- Build System by autotools
- SQL-based test system by mysql-test-run.pl
First, you need to build MySQL 5.5.
cmake . -DCMAKE_INSTALL_PREFIX=/home/kzk/mysql/ -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci
Second, you can build this repository.
./autogen.sh
./configure --with-mysql-source=$MYSQL_SOURCE_DIR
make clean; make;
./test/run-sql-test.sh
Storage engine implementation.
SQL test code directory.
SQL test scripts.
SQL results.
This project is greatly influenced by mroonga project. Thanks!