1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00
C++ comments cleanup
This commit is contained in:
salle@geopard.online.bg
2002-07-17 15:17:20 +03:00
parent dacf75a4ad
commit b472f401b1
11 changed files with 116 additions and 114 deletions

View File

@ -50,14 +50,14 @@ typedef struct st_keyfile_info { /* used with ha_info() */
typedef struct st_key_part_info { /* Info about a key part */
Field *field;
uint offset; /* offset in record (from 0) */
uint null_offset; // Offset to null_bit in record
uint null_offset; /* Offset to null_bit in record */
uint16 length; /* Length of key_part */
uint16 store_length;
uint16 key_type;
uint16 fieldnr; /* Fieldnum in UNIREG */
uint8 key_part_flag; /* 0 or HA_REVERSE_SORT */
uint8 type;
uint8 null_bit; // Position to null_bit
uint8 null_bit; /* Position to null_bit */
} KEY_PART_INFO ;