diff options
author | unknown <salle@geopard.online.bg> | 2002-07-17 15:17:20 +0300 |
---|---|---|
committer | unknown <salle@geopard.online.bg> | 2002-07-17 15:17:20 +0300 |
commit | 18e0dd1f5200ade6f4a15356fa7ce87b3f8f86bc (patch) | |
tree | e1c40d792aee8685690c05c66852a581466505bf /sql/structs.h | |
parent | 6fbafad20d727c4df3bb74e63399e4eb2e646376 (diff) | |
download | mariadb-git-18e0dd1f5200ade6f4a15356fa7ce87b3f8f86bc.tar.gz |
Some
C++ comments cleanup
sql/stacktrace.c:
C++ comments cleanup
sql/structs.h:
C++ comments cleanup
sql/ha_myisam.h:
C++ comments cleanup
include/config-os2.h:
C++ comments cleanup
include/sslopt-case.h:
C++ comments cleanup
mysys/mf_tempfile.c:
C++ comments cleanup
sql/mysql_priv.h:
C++ comments cleanup
sql/slave.h:
C++ comments cleanup
sql/time.cc:
C++ comments cleanup
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/structs.h')
-rw-r--r-- | sql/structs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/structs.h b/sql/structs.h index fde618caf4f..8014b3b27a3 100644 --- a/sql/structs.h +++ b/sql/structs.h @@ -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 ; |