diff options
author | unknown <bell@sanja.is.com.ua> | 2002-06-09 00:58:05 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-06-09 00:58:05 +0300 |
commit | 6a2eec80b0a47c67a8621d68fc447b170d2c0bce (patch) | |
tree | cb84872ae3c34ad83ac3336e53b65d86952ca6ca /sql/table.h | |
parent | fb104d76b5a95cb7056288f4840776cfd5ee7899 (diff) | |
download | mariadb-git-6a2eec80b0a47c67a8621d68fc447b170d2c0bce.tar.gz |
removed unneeded table name pointer
transaction-live memory cleanup moved to ha_commit/ha_rollback
fixed query cache validator to work correctly on systems that allocate unaligned dat
sql/handler.cc:
transaction-live memory cleanup moved to ha_commit/ha_rollback
sql/sql_cache.cc:
removed unneeded table name pointer
fixed debug enter message
fixed query cache validator to work correctly on systems that allocate unaligned data
sql/sql_class.cc:
removed unneeded table name pointer
sql/sql_parse.cc:
transaction-live memory cleanup moved to ha_commit/ha_rollback
sql/table.h:
removed unneeded table name pointer
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.h b/sql/table.h index 209333c24b7..78f80045b21 100644 --- a/sql/table.h +++ b/sql/table.h @@ -154,7 +154,7 @@ typedef struct st_table_list { typedef struct st_changed_table_list { struct st_changed_table_list *next; - char *key, *table_name; + char *key; uint32 key_length; } CHANGED_TABLE_LIST; |