mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
15 lines
290 B
C++
15 lines
290 B
C++
|
|
||
|
#include "mysql_priv.h"
|
||
|
|
||
|
extern handlerton heap_hton,myisam_hton,myisammrg_hton,
|
||
|
binlog_hton@mysql_se_decls@;
|
||
|
|
||
|
/*
|
||
|
This array is used for processing compiled in engines.
|
||
|
*/
|
||
|
handlerton *sys_table_types[]=
|
||
|
{
|
||
|
&heap_hton,&myisam_hton@mysql_se_htons@,&myisammrg_hton,&binlog_hton,NULL
|
||
|
};
|
||
|
|