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
e2d6d838
Commit
e2d6d838
authored
Jul 19, 2004
by
paul@ice.snake.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
handler.cc:
Revise output of SHOW ENGINES.
parent
acfcf762
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
sql/handler.cc
sql/handler.cc
+7
-7
No files found.
sql/handler.cc
View file @
e2d6d838
...
...
@@ -62,21 +62,21 @@ static SHOW_COMP_OPTION have_yes= SHOW_OPTION_YES;
struct
show_table_type_st
sys_table_types
[]
=
{
{
"MyISAM"
,
&
have_yes
,
"Default
type from
3.23 with great performance"
,
DB_TYPE_MYISAM
},
"Default
engine as of MySQL
3.23 with great performance"
,
DB_TYPE_MYISAM
},
{
"HEAP"
,
&
have_yes
,
"
Hash based, stored in memory, useful for temporary tables
"
,
DB_TYPE_HEAP
},
"
Alias for MEMORY
"
,
DB_TYPE_HEAP
},
{
"MEMORY"
,
&
have_yes
,
"
Alias for HEAP
"
,
DB_TYPE_HEAP
},
"
Hash based, stored in memory, useful for temporary tables
"
,
DB_TYPE_HEAP
},
{
"MERGE"
,
&
have_yes
,
"Collection of identical MyISAM tables"
,
DB_TYPE_MRG_MYISAM
},
{
"MRG_MYISAM"
,
&
have_yes
,
"Alias for MERGE"
,
DB_TYPE_MRG_MYISAM
},
{
"ISAM"
,
&
have_isam
,
"Obsolete
table type; Is
replaced by MyISAM"
,
DB_TYPE_ISAM
},
"Obsolete
storage engine, now
replaced by MyISAM"
,
DB_TYPE_ISAM
},
{
"MRG_ISAM"
,
&
have_isam
,
"Obsolete
table type; Is replaced by MRG_MYISAM
"
,
DB_TYPE_MRG_ISAM
},
"Obsolete
storage engine, now replaced by MERGE
"
,
DB_TYPE_MRG_ISAM
},
{
"InnoDB"
,
&
have_innodb
,
"Supports transactions, row-level locking and foreign keys"
,
DB_TYPE_INNODB
},
"Supports transactions, row-level locking
,
and foreign keys"
,
DB_TYPE_INNODB
},
{
"INNOBASE"
,
&
have_innodb
,
"Alias for INNODB"
,
DB_TYPE_INNODB
},
{
"BDB"
,
&
have_berkeley_db
,
...
...
@@ -84,7 +84,7 @@ struct show_table_type_st sys_table_types[]=
{
"BERKELEYDB"
,
&
have_berkeley_db
,
"Alias for BDB"
,
DB_TYPE_BERKELEY_DB
},
{
"NDBCLUSTER"
,
&
have_ndbcluster
,
"Clustered, fault
tolerant memory
based tables"
,
DB_TYPE_NDBCLUSTER
},
"Clustered, fault
-tolerant, memory-
based tables"
,
DB_TYPE_NDBCLUSTER
},
{
"NDB"
,
&
have_ndbcluster
,
"Alias for NDBCLUSTER"
,
DB_TYPE_NDBCLUSTER
},
{
"EXAMPLE"
,
&
have_example_db
,
...
...
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