1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fixes for innobase

Added test for ALTER TABLE ORDER BY
This commit is contained in:
monty@donna.mysql.fi
2001-02-21 14:16:00 +02:00
parent f45764791b
commit 1c298277f9
20 changed files with 132 additions and 48 deletions

View File

@ -214,7 +214,7 @@ static int check_for_max_user_connections(const char *user, int u_length,
(byte*) temp_user, temp_len);
if (uc) /* user found ; check for no. of connections */
{
if (max_user_connections == uc->connections)
if ((uint) max_user_connections == uc->connections)
{
net_printf(&(current_thd->net),ER_TOO_MANY_USER_CONNECTIONS, temp_user);
pthread_mutex_unlock(&LOCK_user_conn);