1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Assorted fixes for test failures.

mysql-test/suite/sys_vars/t/shared_memory_base_name_basic.test:
  The server shared memory name is located in the server's
  temporary directory, not in the mysqltest one.
sql/sql_show.cc:
  */ ends a comment, add space to avoid problems.
This commit is contained in:
Davi Arnaut
2010-11-22 14:10:44 -02:00
parent d1f6adcfc4
commit 2d1d7b1323
3 changed files with 14 additions and 14 deletions

View File

@ -596,11 +596,11 @@ public:
return m_view_access_denied_message_ptr;
}
bool handle_condition(THD *thd, uint sql_errno, const char */* sqlstate */,
bool handle_condition(THD *thd, uint sql_errno, const char * /* sqlstate */,
MYSQL_ERROR::enum_warning_level level,
const char *message, MYSQL_ERROR **/* cond_hdl */)
const char *message, MYSQL_ERROR ** /* cond_hdl */)
{
/*
/*
The handler does not handle the errors raised by itself.
At this point we know if top_view is really a view.
*/
@ -610,7 +610,7 @@ public:
m_handling= TRUE;
bool is_handled;
switch (sql_errno)
{
case ER_TABLEACCESS_DENIED_ERROR: