blob: 55af8cdd8cf47ac55404117f6744c0c85e501c55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
};
|