Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
MySQL 5.1 Plugin Development

You're reading from  MySQL 5.1 Plugin Development

Product type Book
Published in Aug 2010
Publisher Packt
ISBN-13 9781849510608
Pages 288 pages
Edition 1st Edition
Languages

Table of Contents (16) Chapters

MySQL 5.1 Plugin Development
Credits
About the Authors
About the Reviewer
1. Preface
1. Compiling and Using MySQL Plugins 2. User Defined Functions 3. Daemon Plugins 4. Information Schema Plugins 5. Advanced Information Schema Plugins 6. Full-text Parser Plugins 7. Practical Full-text Parsers 8. Storage Engine Plugins 9. HTML Storage Engine—Reads and Writes 10. TOCAB Storage Engine — Implementing Indexes Beyond MySQL 5.1

Optimizing and analyzing


In our storage engine, even deleted rows take space, and if the table is regularly updated, it will grow even if the number of rows does not increase. It would be nice to implement OPTIMIZE TABLE so that users could have a simple tool to reclaim the unused space. Luckily, there is a very easy shortcut, we almost do not need to do anything:

int ha_html::optimize(THD* thd, HA_CHECK_OPT* check_opt)
{
return HA_ADMIN_TRY_ALTER;
}

This tells MySQL that for our engine, OPTIMIZE TABLE xxx should be mapped to ALTER TABLE xxx ENGINE=HTML. That is, to optimize our table MySQL will create a new table with the same structure, copy all data over to it, and replace the old table with the new one. Nice, isn't it? Unfortunately, at least in MySQL 5.1.47 there is a bug that will cause our OPTIMIZE TABLE to fail unless our engine can do ANALYZE TABLE too. As a workaround we implement a dummy analyze() that succeeds without actually doing anything:

int ha_html::analyze(THD* thd...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}