summaryrefslogtreecommitdiff
path: root/sql/table.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/table.h')
-rw-r--r--sql/table.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sql/table.h b/sql/table.h
index 9430ceb5fe3..fd7d23a13c8 100644
--- a/sql/table.h
+++ b/sql/table.h
@@ -1153,7 +1153,6 @@ public:
uchar *record[3]; /* Pointer to records */
/* record buf to resolve hash collisions for long UNIQUE constraints */
uchar *check_unique_buf;
- handler *update_handler; /* Handler used in case of update */
uchar *write_row_record; /* Used as optimisation in
THD::write_row */
uchar *insert_values; /* used by INSERT ... UPDATE */
@@ -1182,6 +1181,7 @@ public:
/* Map of keys dependent on some constraint */
key_map constraint_dependent_keys;
KEY *key_info; /* data of keys in database */
+ KEY_PART_INFO *base_key_part; /* Where key parts are stored */
Field **field; /* Pointer to fields */
Field **vfield; /* Pointer to virtual fields*/
@@ -1640,8 +1640,6 @@ public:
void vers_update_fields();
void vers_update_end();
void find_constraint_correlated_indexes();
- void clone_handler_for_update();
- void delete_update_handler();
/** Number of additional fields used in versioned tables */
#define VERSIONING_FIELDS 2