diff options
author | unknown <bar@gw.udmsearch.izhnet.ru> | 2002-04-16 18:21:53 +0500 |
---|---|---|
committer | unknown <bar@gw.udmsearch.izhnet.ru> | 2002-04-16 18:21:53 +0500 |
commit | 32ac1ef044428947f6396a47c275d06975133c8c (patch) | |
tree | 9d3d4cb0010ffe42bd6da318ef8e07ddec657d75 /sql/sql_table.cc | |
parent | 7be6a76520c5e1f72f9d8324d266aa91b6e8ea24 (diff) | |
download | mariadb-git-32ac1ef044428947f6396a47c275d06975133c8c.tar.gz |
Some fixes after merging changes from 4.0
include/hash.h:
Monty forgot to add H in left part of macros
mysys/hash.c:
I wonder how it happened that my_bool disappeared
sql/sql_acl.cc:
Somebody forgot )
sql/sql_class.h:
I wonder how it happened that this line disappeared
sql/sql_table.cc:
small typo
sql/sql_yacc.yy:
Having ; is more compatible
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc index b88db94c767..19fcf5970c2 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -454,7 +454,7 @@ int mysql_create_table(THD *thd,const char *db, const char *table_name, key_info->flags = HA_NOSAME; } - key_info->key_alg = key->alg; + key_info->key_alg = key->algorithm; key_info->key_parts=(uint8) key->columns.elements; key_info->key_part=key_part_info; key_info->usable_key_parts= key_number; |