1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

simplify the handler api - table_type() is no longer abstract, not even virtual

This commit is contained in:
Sergei Golubchik
2012-12-17 11:00:39 +01:00
parent a058974440
commit cb7f5948ec
24 changed files with 11 additions and 78 deletions

View File

@ -19,7 +19,7 @@ MyISAM
SET @@global.storage_engine = MERGE;
SELECT @@global.storage_engine;
@@global.storage_engine
MRG_MYISAM
MRG_MyISAM
SET @@global.storage_engine = MEMORY;
SELECT @@global.storage_engine;
@@global.storage_engine
@ -36,7 +36,7 @@ MyISAM
SET @@session.storage_engine = MERGE;
SELECT @@session.storage_engine;
@@session.storage_engine
MRG_MYISAM
MRG_MyISAM
SET @@session.storage_engine = MEMORY;
SELECT @@session.storage_engine;
@@session.storage_engine