diff options
author | unknown <monty@mysql.com/nosik.monty.fi> | 2008-02-11 20:55:04 +0200 |
---|---|---|
committer | unknown <monty@mysql.com/nosik.monty.fi> | 2008-02-11 20:55:04 +0200 |
commit | 315d7b3419fda7c4987c8f2c51d500ed2259899c (patch) | |
tree | 7144a209ad4df9e8ef57404604d7eb6a56047332 /KNOWN_BUGS.txt | |
parent | 5fa560e995a01c87bd7d20264c85c2ec66c19748 (diff) | |
download | mariadb-git-315d7b3419fda7c4987c8f2c51d500ed2259899c.tar.gz |
Add warning of TRANSACTIONAL=1 is used with handler that doesn't support it
Added hton_name() and handler->engine_name() and use these when appropriate
KNOWN_BUGS.txt:
Added some of the known bugs
mysql-test/r/maria.result:
Added test for TRANSACTIONAL=1
mysql-test/r/myisam.result:
Added test for TRANSACTIONAL=1
mysql-test/t/maria.test:
Added test for TRANSACTIONAL=1
mysql-test/t/myisam.test:
Added test for TRANSACTIONAL=1
sql/handler.cc:
ha_resolve_storage_engine_name() -> hton_name()
sql/handler.h:
Added hton_name() and handler->engine_name()
sql/set_var.cc:
Use hton_name()
sql/sql_table.cc:
Add warning of TRANSACTIONAL=1 is used with handler that doesn't support it
Indentation fixes
ha_resolve_storage_engine_name() -> hton_name()
sql/sql_tablespace.cc:
ha_resolve_storage_engine_name() -> hton_name()
Indentation fixes
sql/sql_yacc.yy:
ha_resolve_storage_engine_name() -> hton_name()
sql/unireg.cc:
ha_resolve_storage_engine_name() -> hton_name()
Indentation fixes
Diffstat (limited to 'KNOWN_BUGS.txt')
-rw-r--r-- | KNOWN_BUGS.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/KNOWN_BUGS.txt b/KNOWN_BUGS.txt index f2678b60906..046f66bd2ce 100644 --- a/KNOWN_BUGS.txt +++ b/KNOWN_BUGS.txt @@ -20,8 +20,8 @@ http://bugs.mysql.com/ so that we can either fix it for next release or in the worst case add it here for others to know! -Known bugs that are planned to be fixed before next minor release -================================================================= +Known bugs that we are working on and will be fixed shortly +=========================================================== - If the log files are damaged or inconsistent, Maria may fail to start. We should fix that if this happens and mysqld is restarted (thanks to @@ -31,9 +31,15 @@ Known bugs that are planned to be fixed before next minor release Temporary fix is to remove or maria_log.???????? files from the data directory, restart mysqld and run CHECK TABLE / REPAIR TABLE or mysqlcheck on your Maria tables +- We have some instabilities in log writing that is under investigatation + This causes mainly assert to triggers in the code and sometimes + the log handler doesn't start up after restart. - LOAD INDEX commands are for the moment ignored for Maria tables (The code needs to be rewritten to do all reads through page cache to avoid half-block reads) +- Freeing maria tmp table after fetching rows using prepared statements causes + a crash. + Known bugs that are planned to be fixed before Beta =================================================== |