1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fixed key algorithm handling

This commit is contained in:
monty@hundin.mysql.fi
2002-05-22 20:09:03 +03:00
parent e013efcc12
commit d1e13bec39
4 changed files with 10 additions and 7 deletions

View File

@ -221,9 +221,6 @@ public:
List<key_part_spec> columns;
const char *Name;
Key(enum Keytype type_par,const char *name_arg,List<key_part_spec> &cols)
:type(type_par), columns(cols),Name(name_arg) {}
Key(enum Keytype type_par, enum ha_key_alg alg_par, const char *name_arg, List<key_part_spec> &cols)
:type(type_par), algorithm(alg_par), columns(cols), Name(name_arg)
{}