diff options
author | unknown <ingo@mysql.com> | 2006-02-20 15:23:57 +0100 |
---|---|---|
committer | unknown <ingo@mysql.com> | 2006-02-20 15:23:57 +0100 |
commit | ab16adb7dd56106bf73172799fdbe8ce6809adab (patch) | |
tree | 4451bfa77e82c636d2296293d1e190bd302bdc9d /sql/table.h | |
parent | 0e88bff6cb73f1e95ad6683d45626fadef41f35d (diff) | |
download | mariadb-git-ab16adb7dd56106bf73172799fdbe8ce6809adab.tar.gz |
BUG#5390 - problems with merge tables
Merge from 4.1
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/sql/table.h b/sql/table.h index 62990a966cc..9d44d136773 100644 --- a/sql/table.h +++ b/sql/table.h @@ -234,15 +234,10 @@ 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 lock_position; /* Position in MYSQL_LOCK.table */ + uint lock_data_start; /* Start pos. in MYSQL_LOCK.locks */ + uint lock_count; /* Number of locks */ uint tablenr,used_fields; uint temp_pool_slot; /* Used by intern temp tables */ uint status; /* What's in record[0] */ @@ -251,8 +246,8 @@ struct st_table { uint derived_select_number; int current_lock; /* Type of lock on table */ my_bool copy_blobs; /* copy_blobs when storing */ - - /* + + /* 0 or JOIN_TYPE_{LEFT|RIGHT}. Currently this is only compared to 0. If maybe_null !=0, this table is inner w.r.t. some outer join operation, and null_row may be true. |