1
0
mirror of https://github.com/MariaDB/server.git synced 2025-10-28 17:15:19 +03:00

Fixed key algorithm handling

sql/sql_string.cc:
  Portability fix
This commit is contained in:
unknown
2002-05-22 20:09:03 +03:00
parent a8652e9957
commit e494b724d0
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)
{}