Rev. | Zeit | Autor | Nachricht |
---|---|---|---|
r184 | 2010-07-01 20:39:40 | myuka | added test suite results *senna_score_sort.result modi... |
r183 | 2010-07-01 20:36:57 | myuka | added test suite * senna_score_sort.test modified test ... |
r182 | 2010-06-30 16:28:35 | myuka | modified the senna_score_sort variables * using the senn... |
r181 | 2010-06-29 16:39:10 | myuka | modified the system variables *senna_score_sort |
r180 | 2010-03-25 12:05:13 | myuka | added a system variable * senna_score_sort |
r179 | 2010-03-24 13:53:18 | myuka | added a new function in boolean mode *sen_records_sort |
r178 | 2009-11-26 18:10:05 | mir | tritonn-1.0.12a-mysql-5.0.87. |
r177 | 2009-07-06 18:38:02 | myuka | Initial inport |
r176 | 2008-12-10 14:08:28 | mir | started tritonn-1.0.13 |
r175 | 2008-12-09 14:42:39 | mir | updated SPEC files for rpmbuild. |
Name | Rev. | Zeit | Autor |
---|---|---|---|
tritonn-1.0.12-mysql-5.0.83 | r184 | 2010-07-01 20:39:40 | myuka |
tritonn-1.0.13-mysql-5.0.67 | r176 | 2008-12-10 14:08:28 | mir |
tritonn-1.0.12-mysql-5.0.67 | r174 | 2008-12-03 10:40:07 | mir |
tritonn-1.0.11-mysql-5.0.51a | r165 | 2008-08-04 19:42:35 | mir |
tritonn-1.0.10-mysql-5.0.51a | r140 | 2008-06-11 10:30:18 | mir |
tritonn-1.1.0-mysql-5.0.51a | r109 | 2008-02-15 17:16:35 | mir |
tritonn-1.0.9-mysql-5.0.51a | r101 | 2008-02-08 19:30:15 | mir |
tritonn-1.0.9-mysql-5.0.51 | r92 | 2008-01-28 16:13:24 | mir |
tritonn-1.0.8-mysql-5.0.51 | r70 | 2008-01-18 12:00:47 | mir |
tritonn-1.0.8-mysql-5.0.45 | r69 | 2008-01-18 12:00:44 | mir |
Hi! This is an skeleton engine, it does not do much. Its been put together for documentation reasons and as a way to get someone started quickly. To install, grab a copy of the mysql source code and run this: ./configure --with-mysql=/home/brian/mysql-5.1/ --libdir=/usr/local/lib/mysql/ make install And then inside of MySQL: mysql> INSTALL PLUGIN skeleton SONAME 'libskeleton_engine.so'; mysql> CREATE TABLE `d` (`a` varchar(125), b text, primary key(a)) ENGINE=skeleton DEFAULT CHARSET=latin1; Query OK, 0 rows affected (0.01 sec) 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). For Solaris you can enable DTrace probes by adding to configure --enable-dtrace Have fun! Cheers, -Brian