summaryrefslogtreecommitdiff
path: root/sql/sql_base.cc
diff options
context:
space:
mode:
authormonty@mysql.com <>2006-06-06 20:21:36 +0300
committermonty@mysql.com <>2006-06-06 20:21:36 +0300
commit37d7bbb335fd3d3c578a724790ce5f5cbc049ce9 (patch)
tree9dd7413d751986e81d852168831ec3ffe5452d58 /sql/sql_base.cc
parent74de7a487da7399ce1fc258e52c9616944a2b5d3 (diff)
downloadmariadb-git-37d7bbb335fd3d3c578a724790ce5f5cbc049ce9.tar.gz
Added --pipe option for faster compile
Changed error to be more descriptive when you are refering to a not existing key Fixed core dump in view test and changed to better error message
Diffstat (limited to 'sql/sql_base.cc')
-rw-r--r--sql/sql_base.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_base.cc b/sql/sql_base.cc
index d21cfa4a240..47c55228adc 100644
--- a/sql/sql_base.cc
+++ b/sql/sql_base.cc
@@ -5487,8 +5487,8 @@ bool get_key_map_from_key_list(key_map *map, TABLE *table,
name->length(), 1)) <=
0)
{
- my_error(ER_KEY_COLUMN_DOES_NOT_EXITS, MYF(0), name->c_ptr(),
- table->pos_in_table_list->alias);
+ my_error(ER_KEY_DOES_NOT_EXITS, MYF(0), name->c_ptr(),
+ table->alias);
map->set_all();
return 1;
}