#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 |
Definition at line 85 of file sql_class.h.
| key_part_spec::key_part_spec | ( | const char * | name, | |
| uint | len = 0 | |||
| ) | [inline] |
| bool key_part_spec::operator== | ( | const key_part_spec & | other | ) | const |
Definition at line 88 of file sql_class.cc.
References field_name, length, and strcmp().
00089 { 00090 return length == other.length && !strcmp(field_name, other.field_name); 00091 }
Here is the call graph for this function:

| const char* key_part_spec::field_name |
1.4.7

