Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e672bdc8
Commit
e672bdc8
authored
May 11, 2006
by
reggie@linux.site
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed handlerton-win.cc (again)
parent
aed0fca3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
72 deletions
+0
-72
sql/handlerton-win.cc
sql/handlerton-win.cc
+0
-72
No files found.
sql/handlerton-win.cc
deleted
100644 → 0
View file @
aed0fca3
#include "mysql_priv.h"
extern
handlerton
heap_hton
;
extern
handlerton
myisam_hton
;
extern
handlerton
myisammrg_hton
;
extern
handlerton
binlog_hton
;
#ifdef WITH_INNOBASE_STORAGE_ENGINE
extern
handlerton
innobase_hton
;
#endif
#ifdef WITH_BERKELEY_STORAGE_ENGINE
extern
handlerton
berkeley_hton
;
#endif
#ifdef WITH_EXAMPLE_STORAGE_ENGINE
extern
handlerton
example_hton
;
#endif
#ifdef WITH_ARCHIVE_STORAGE_ENGINE
extern
handlerton
archive_hton
;
#endif
#ifdef WITH_CSV_STORAGE_ENGINE
extern
handlerton
tina_hton
;
#endif
#ifdef WITH_BLACKHOLE_STORAGE_ENGINE
extern
handlerton
blackhole_hton
;
#endif
#ifdef WITH_FEDERATED_STORAGE_ENGINE
extern
handlerton
federated_hton
;
#endif
#ifdef WITH_NDBCLUSTER_STORAGE_ENGINE
extern
handlerton
ndbcluster_hton
;
#endif
#ifdef WITH_PARTITION_STORAGE_ENGINE
extern
handlerton
partition_hton
;
#endif
/*
This array is used for processing compiled in engines.
*/
handlerton
*
sys_table_types
[]
=
{
&
heap_hton
,
&
myisam_hton
,
#ifdef WITH_INNOBASE_STORAGE_ENGINE
&
innobase_hton
,
#endif
#ifdef WITH_BERKELEY_STORAGE_ENGINE
&
berkeley_hton
,
#endif
#ifdef WITH_EXAMPLE_STORAGE_ENGINE
&
example_hton
,
#endif
#ifdef WITH_ARCHIVE_STORAGE_ENGINE
&
archive_hton
,
#endif
#ifdef WITH_CSV_STORAGE_ENGINE
&
tina_hton
,
#endif
#ifdef WITH_BLACKHOLE_STORAGE_ENGINE
&
blackhole_hton
,
#endif
#ifdef WITH_FEDERATED_STORAGE_ENGINE
&
federated_hton
,
#endif
#ifdef WITH_NDBCLUSTER_STORAGE_ENGINE
&
ndbcluster_hton
,
#endif
#ifdef WITH_PARTITION_STORAGE_ENGINE
&
partition_hton
,
#endif
&
myisammrg_hton
,
&
binlog_hton
,
NULL
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment