diff options
author | Sergei Golubchik <sergii@pisem.net> | 2010-12-27 10:53:02 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2010-12-27 10:53:02 +0100 |
commit | fda18d8fa26d10dee034756b276fe4f46f477f3a (patch) | |
tree | d0542681f79725839b61a086935a9c92a249a930 /mysql-test/suite/maria | |
parent | 6c958d6e80f681c207f4298b754c8b18170d3224 (diff) | |
download | mariadb-git-fda18d8fa26d10dee034756b276fe4f46f477f3a.tar.gz |
lpbug#665028 SHOW STORAGE ENGINES shows incorrect Transaction support for Aria
don't fill in handlerton::commit member, as it's not used
and makes MySQL believe that Aria is transactional.
Fix the TRANSACTIONAL=1 warning.
Diffstat (limited to 'mysql-test/suite/maria')
-rw-r--r-- | mysql-test/suite/maria/r/maria.result | 2 | ||||
-rw-r--r-- | mysql-test/suite/maria/r/maria3.result | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/maria/r/maria.result b/mysql-test/suite/maria/r/maria.result index e7f40ca10ed..2eb3546fc96 100644 --- a/mysql-test/suite/maria/r/maria.result +++ b/mysql-test/suite/maria/r/maria.result @@ -1,6 +1,6 @@ select * from INFORMATION_SCHEMA.ENGINES where ENGINE="ARIA"; ENGINE SUPPORT COMMENT TRANSACTIONS XA SAVEPOINTS -Aria YES Crash-safe tables with MyISAM heritage YES NO NO +Aria YES Crash-safe tables with MyISAM heritage NO NO NO set global storage_engine=aria; set session storage_engine=aria; set global aria_page_checksum=0; diff --git a/mysql-test/suite/maria/r/maria3.result b/mysql-test/suite/maria/r/maria3.result index 2311669640b..490059587ad 100644 --- a/mysql-test/suite/maria/r/maria3.result +++ b/mysql-test/suite/maria/r/maria3.result @@ -1,6 +1,6 @@ select * from INFORMATION_SCHEMA.ENGINES where ENGINE="ARIA"; ENGINE SUPPORT COMMENT TRANSACTIONS XA SAVEPOINTS -Aria YES Crash-safe tables with MyISAM heritage YES NO NO +Aria YES Crash-safe tables with MyISAM heritage NO NO NO set global storage_engine=aria; set session storage_engine=aria; set global aria_page_checksum=0; |