1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Some fixes after merging changes from 4.0

This commit is contained in:
bar@gw.udmsearch.izhnet.ru
2002-04-16 18:21:53 +05:00
parent 8001e7a28e
commit 4a3942bb74
6 changed files with 22 additions and 21 deletions

View File

@@ -222,6 +222,7 @@ public:
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)