mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
14 lines
290 B
C++
14 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
|
|
};
|
|
|