1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

word substitution in error messages removed - can create problems for i18n

This commit is contained in:
unknown
2003-11-18 10:23:49 +01:00
parent cf19261669
commit 5a24433d27
32 changed files with 155 additions and 175 deletions

View File

@@ -1085,7 +1085,7 @@ int mysql_table_dump(THD* thd, char* db, char* tbl_name, int fd)
if (!db || check_db_name(db))
{
net_printf(thd,ER_WRONG_NAME, ER(ER_DATABASE), db ? db : "NULL");
net_printf(thd,ER_WRONG_NAME_FOR_DATABASE, db ? db : "NULL");
goto err;
}
if (lower_case_table_names)
@@ -1429,7 +1429,7 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
// null test to handle EOM
if (!db || !strip_sp(db) || check_db_name(db))
{
net_printf(thd,ER_WRONG_NAME, ER(ER_DATABASE), db ? db : "NULL");
net_printf(thd,ER_WRONG_NAME_FOR_DATABASE, db ? db : "NULL");
break;
}
if (check_access(thd,CREATE_ACL,db,0,1,0))
@@ -1445,7 +1445,7 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
// null test to handle EOM
if (!db || !strip_sp(db) || check_db_name(db))
{
net_printf(thd,ER_WRONG_NAME, ER(ER_DATABASE), db ? db : "NULL");
net_printf(thd,ER_WRONG_NAME_FOR_DATABASE, db ? db : "NULL");
break;
}
if (check_access(thd,DROP_ACL,db,0,1,0))
@@ -2048,7 +2048,7 @@ mysql_execute_command(THD *thd)
#endif
if (strlen(tables->real_name) > NAME_LEN)
{
net_printf(thd,ER_WRONG_NAME, ER(ER_TABLE), tables->real_name);
net_printf(thd,ER_WRONG_NAME_FOR_TABLE, tables->real_name);
break;
}
LOCK_ACTIVE_MI;
@@ -2093,7 +2093,7 @@ mysql_execute_command(THD *thd)
#endif
if (strlen(tables->real_name) > NAME_LEN)
{
net_printf(thd, ER_WRONG_NAME, ER(ER_TABLE), tables->alias);
net_printf(thd, ER_WRONG_NAME_FOR_TABLE, tables->alias);
res=0;
break;
}
@@ -2226,7 +2226,7 @@ mysql_execute_command(THD *thd)
ulong priv=0;
if (lex->name && (!lex->name[0] || strlen(lex->name) > NAME_LEN))
{
net_printf(thd, ER_WRONG_NAME, ER(ER_TABLE), lex->name);
net_printf(thd, ER_WRONG_NAME_FOR_TABLE, lex->name);
res=0;
break;
}
@@ -2805,7 +2805,7 @@ mysql_execute_command(THD *thd)
remove_escape(db); // Fix escaped '_'
if (check_db_name(db))
{
net_printf(thd,ER_WRONG_NAME, ER(ER_DATABASE), db);
net_printf(thd,ER_WRONG_NAME_FOR_DATABASE, db);
goto error;
}
#ifndef NO_EMBEDDED_ACCESS_CHECKS
@@ -2970,7 +2970,7 @@ mysql_execute_command(THD *thd)
{
if (!strip_sp(lex->name) || check_db_name(lex->name))
{
net_printf(thd,ER_WRONG_NAME, ER(ER_DATABASE), lex->name);
net_printf(thd,ER_WRONG_NAME_FOR_DATABASE, lex->name);
break;
}
/*
@@ -2998,7 +2998,7 @@ mysql_execute_command(THD *thd)
{
if (!strip_sp(lex->name) || check_db_name(lex->name))
{
net_printf(thd, ER_WRONG_NAME, ER(ER_DATABASE), lex->name);
net_printf(thd, ER_WRONG_NAME_FOR_DATABASE, lex->name);
break;
}
/*
@@ -3031,7 +3031,7 @@ mysql_execute_command(THD *thd)
{
if (!strip_sp(lex->name) || check_db_name(lex->name))
{
net_printf(thd, ER_WRONG_NAME, ER(ER_DATABASE), lex->name);
net_printf(thd, ER_WRONG_NAME_FOR_DATABASE, lex->name);
break;
}
if (check_access(thd,ALTER_ACL,lex->name,0,1,0))
@@ -3048,7 +3048,7 @@ mysql_execute_command(THD *thd)
{
if (!strip_sp(lex->name) || check_db_name(lex->name))
{
net_printf(thd,ER_WRONG_NAME, ER(ER_DATABASE), lex->name);
net_printf(thd,ER_WRONG_NAME_FOR_DATABASE, lex->name);
break;
}
if (check_access(thd,DROP_ACL,lex->name,0,1,0))
@@ -4298,7 +4298,7 @@ TABLE_LIST *st_select_lex::add_table_to_list(THD *thd,
if (check_table_name(table->table.str,table->table.length) ||
table->db.str && check_db_name(table->db.str))
{
net_printf(thd, ER_WRONG_NAME, ER(ER_TABLE), table->table.str);
net_printf(thd, ER_WRONG_NAME_FOR_TABLE, table->table.str);
DBUG_RETURN(0);
}
@@ -4652,7 +4652,7 @@ static bool append_file_to_dir(THD *thd, char **filename_ptr, char *table_name)
if (strlen(*filename_ptr)+strlen(table_name) >= FN_REFLEN-1 ||
!test_if_hard_path(*filename_ptr))
{
my_error(ER_WRONG_NAME, MYF(0), ER(ER_TABLE), *filename_ptr);
my_error(ER_WRONG_NAME_FOR_TABLE, MYF(0), *filename_ptr);
return 1;
}
/* Fix is using unix filename format on dos */