#include <sql_class.h>
Inheritance diagram for key_part_spec:


Public Member Functions | |
| key_part_spec (const char *name, uint len=0) | |
| bool | operator== (const key_part_spec &other) const |
Public Attributes | |
| const char * | field_name |
| uint | length |
|
||||||||||||
|
00241 :field_name(name), length(len) {}
|
|
|
00085 {
00086 return length == other.length && !strcmp(field_name, other.field_name);
00087 }
|
|
|
|
|
|
|
1.3.9.1