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
e7ca377c
Commit
e7ca377c
authored
Jun 05, 2018
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-16342 SHOW ENGINES: MyISAM description is useless
rewrite tautological engine descriptions
parent
1d43f71c
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
11 deletions
+11
-11
mysql-test/r/information_schema.result
mysql-test/r/information_schema.result
+1
-1
mysql-test/suite/federated/have_federatedx.inc
mysql-test/suite/federated/have_federatedx.inc
+1
-1
mysql-test/suite/funcs_1/r/is_engines_archive.result
mysql-test/suite/funcs_1/r/is_engines_archive.result
+1
-1
mysql-test/suite/funcs_1/r/is_engines_csv.result
mysql-test/suite/funcs_1/r/is_engines_csv.result
+1
-1
mysql-test/suite/funcs_1/r/is_engines_federated.result
mysql-test/suite/funcs_1/r/is_engines_federated.result
+1
-1
mysql-test/suite/funcs_1/r/is_engines_myisam.result
mysql-test/suite/funcs_1/r/is_engines_myisam.result
+1
-1
storage/archive/ha_archive.cc
storage/archive/ha_archive.cc
+1
-1
storage/csv/ha_tina.cc
storage/csv/ha_tina.cc
+1
-1
storage/federated/ha_federated.cc
storage/federated/ha_federated.cc
+1
-1
storage/federatedx/ha_federatedx.cc
storage/federatedx/ha_federatedx.cc
+1
-1
storage/myisam/ha_myisam.cc
storage/myisam/ha_myisam.cc
+1
-1
No files found.
mysql-test/r/information_schema.result
View file @
e7ca377c
...
...
@@ -1387,7 +1387,7 @@ USE test;
End of 5.0 tests.
select * from information_schema.engines WHERE ENGINE="MyISAM";
ENGINE SUPPORT COMMENT TRANSACTIONS XA SAVEPOINTS
MyISAM DEFAULT
MyISAM storage engine
NO NO NO
MyISAM DEFAULT
Non-transactional engine with good performance and small data footprint
NO NO NO
grant select on *.* to user3148@localhost;
select user,db from information_schema.processlist;
user db
...
...
mysql-test/suite/federated/have_federatedx.inc
View file @
e7ca377c
if
(
!
`SELECT count(*) FROM information_schema.plugins WHERE
plugin_name = 'federated' AND plugin_status = 'active' AND
plugin_description LIKE '%
FederatedX
%'`
){
plugin_description LIKE '%
transactions
%'`
){
skip
Need
FederatedX
engine
;
}
mysql-test/suite/funcs_1/r/is_engines_archive.result
View file @
e7ca377c
...
...
@@ -2,7 +2,7 @@ SELECT * FROM information_schema.engines
WHERE ENGINE = 'ARCHIVE';
ENGINE ARCHIVE
SUPPORT YES
COMMENT
Archive storage engine
COMMENT
gzip-compresses tables for a low storage footprint
TRANSACTIONS NO
XA NO
SAVEPOINTS NO
mysql-test/suite/funcs_1/r/is_engines_csv.result
View file @
e7ca377c
...
...
@@ -2,7 +2,7 @@ SELECT * FROM information_schema.engines
WHERE ENGINE = 'CSV';
ENGINE CSV
SUPPORT YES
COMMENT
CSV storage engine
COMMENT
Stores tables as CSV files
TRANSACTIONS NO
XA NO
SAVEPOINTS NO
mysql-test/suite/funcs_1/r/is_engines_federated.result
View file @
e7ca377c
...
...
@@ -2,7 +2,7 @@ SELECT * FROM information_schema.engines
WHERE ENGINE = 'FEDERATED';
ENGINE FEDERATED
SUPPORT YES
COMMENT
FederatedX pluggable storage engin
e
COMMENT
Allows to access tables on other MariaDB servers, supports transactions and mor
e
TRANSACTIONS YES
XA NO
SAVEPOINTS YES
mysql-test/suite/funcs_1/r/is_engines_myisam.result
View file @
e7ca377c
...
...
@@ -2,7 +2,7 @@ SELECT * FROM information_schema.engines
WHERE ENGINE = 'MyISAM';
ENGINE MyISAM
SUPPORT DEFAULT
COMMENT
MyISAM storage engine
COMMENT
Non-transactional engine with good performance and small data footprint
TRANSACTIONS NO
XA NO
SAVEPOINTS NO
storage/archive/ha_archive.cc
View file @
e7ca377c
...
...
@@ -1840,7 +1840,7 @@ maria_declare_plugin(archive)
&
archive_storage_engine
,
"ARCHIVE"
,
"Brian Aker, MySQL AB"
,
"
Archive storage engine
"
,
"
gzip-compresses tables for a low storage footprint
"
,
PLUGIN_LICENSE_GPL
,
archive_db_init
,
/* Plugin Init */
archive_db_done
,
/* Plugin Deinit */
...
...
storage/csv/ha_tina.cc
View file @
e7ca377c
...
...
@@ -1800,7 +1800,7 @@ maria_declare_plugin(csv)
&
csv_storage_engine
,
"CSV"
,
"Brian Aker, MySQL AB"
,
"
CSV storage engine
"
,
"
Stores tables as CSV files
"
,
PLUGIN_LICENSE_GPL
,
tina_init_func
,
/* Plugin Init */
tina_done_func
,
/* Plugin Deinit */
...
...
storage/federated/ha_federated.cc
View file @
e7ca377c
...
...
@@ -3503,7 +3503,7 @@ maria_declare_plugin(federated)
&
federated_storage_engine
,
"FEDERATED"
,
"Patrick Galbraith and Brian Aker, MySQL AB"
,
"
Federated MySQL storage engine
"
,
"
Allows to access tables on other MariaDB servers
"
,
PLUGIN_LICENSE_GPL
,
federated_db_init
,
/* Plugin Init */
federated_done
,
/* Plugin Deinit */
...
...
storage/federatedx/ha_federatedx.cc
View file @
e7ca377c
...
...
@@ -3608,7 +3608,7 @@ maria_declare_plugin(federatedx)
&
federatedx_storage_engine
,
"FEDERATED"
,
"Patrick Galbraith"
,
"
FederatedX pluggable storage engin
e"
,
"
Allows to access tables on other MariaDB servers, supports transactions and mor
e"
,
PLUGIN_LICENSE_GPL
,
federatedx_db_init
,
/* Plugin Init */
federatedx_done
,
/* Plugin Deinit */
...
...
storage/myisam/ha_myisam.cc
View file @
e7ca377c
...
...
@@ -2346,7 +2346,7 @@ maria_declare_plugin(myisam)
&
myisam_storage_engine
,
"MyISAM"
,
"MySQL AB"
,
"
MyISAM storage engine
"
,
"
Non-transactional engine with good performance and small data footprint
"
,
PLUGIN_LICENSE_GPL
,
myisam_init
,
/* Plugin Init */
NULL
,
/* Plugin Deinit */
...
...
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