MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
dict_col_t Struct Reference

#include <dict0mem.h>

Public Attributes

unsigned ind:10
unsigned ord_part:1
unsigned max_prefix:12
unsigned prtype:32
unsigned mtype:8
unsigned len:16
unsigned mbminmaxlen:5

Detailed Description

Data structure for a column in a table

Definition at line 391 of file dict0mem.h.

Member Data Documentation

unsigned dict_col_t::ind

table column position (starting from 0)

Definition at line 425 of file dict0mem.h.

unsigned dict_col_t::len

length; for MySQL data this is field->pack_length(), except that for a >= 5.0.3 type true VARCHAR this is the maximum byte length of the string data (in addition to the string, MySQL uses 1 or 2 bytes to store the string length)

Definition at line 407 of file dict0mem.h.

unsigned dict_col_t::max_prefix

maximum index prefix length on this column. Our current max limit is 3072 for Barracuda table

Definition at line 430 of file dict0mem.h.

unsigned dict_col_t::mbminmaxlen

minimum and maximum length of a character, in bytes; DATA_MBMINMAXLEN(mbminlen,mbmaxlen); mbminlen=DATA_MBMINLEN(mbminmaxlen); mbmaxlen=DATA_MBMINLEN(mbminmaxlen)

Definition at line 416 of file dict0mem.h.

unsigned dict_col_t::mtype

main data type

Definition at line 403 of file dict0mem.h.

unsigned dict_col_t::ord_part

nonzero if this column appears in the ordering fields of an index

Definition at line 427 of file dict0mem.h.

unsigned dict_col_t::prtype
The following are copied from dtype_t,

so that all bit-fields can be packed tightly. precise type; MySQL data type, charset code, flags to indicate nullability, signedness, whether this is a binary string, whether this is a true VARCHAR where MySQL uses 2 bytes to store the length

Definition at line 396 of file dict0mem.h.


The documentation for this struct was generated from the following file: