diff options
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/table.h b/sql/table.h index 78a942ef301..62990a966cc 100644 --- a/sql/table.h +++ b/sql/table.h @@ -235,6 +235,14 @@ struct st_table { timestamp_auto_set_type timestamp_field_type; table_map map; /* ID bit of table (1,2,4,8,16...) */ + uint next_number_index; + uint blob_ptr_size; /* 4 or 8 */ + uint next_number_key_offset; + uint lock_position; /* Position in MYSQL_LOCK.table */ + uint lock_data_start; /* Start pos. in MYSQL_LOCK.locks */ + uint lock_count; /* Number of locks */ + int current_lock; /* Type of lock on table */ + enum tmp_table_type tmp_table; uint tablenr,used_fields; uint temp_pool_slot; /* Used by intern temp tables */ uint status; /* What's in record[0] */ |