diff options
author | monty@mysql.com <> | 2004-04-06 12:13:43 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-04-06 12:13:43 +0300 |
commit | 49330f61da8692711cb848e1d232cefe2795cf60 (patch) | |
tree | 509557fea33580a9b087dce685c789de3664b19e /sql/sql_base.cc | |
parent | 03caa47acba6cf3f85e99459e5a972a00a90af47 (diff) | |
download | mariadb-git-49330f61da8692711cb848e1d232cefe2795cf60.tar.gz |
Fixed warnings from valgrind (not a bug)
Don't add -debug to server version if MYSQL_SERVER_PREFIX is used
Indentation cleanups
Diffstat (limited to 'sql/sql_base.cc')
-rw-r--r-- | sql/sql_base.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_base.cc b/sql/sql_base.cc index f3bf0a15745..dce08cf59c4 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -1805,7 +1805,7 @@ Field *find_field_in_table(THD *thd,TABLE *table,const char *name,uint length, if (cached_field_index < table->fields && !my_strcasecmp(system_charset_info, table->field[cached_field_index]->field_name, name)) - field_ptr= table->field + cached_field_index; + field_ptr= table->field + cached_field_index; else if (table->name_hash.records) field_ptr= (Field**)hash_search(&table->name_hash,(byte*) name, length); |