diff options
author | bell@sanja.is.com.ua <> | 2002-03-15 23:57:31 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-03-15 23:57:31 +0200 |
commit | 63b2a551bf10181b0727e9b3f1240e73e5b80158 (patch) | |
tree | 691610fcbd4313eb2d79af0b91394cb2b9410f21 /sql/table.h | |
parent | 12f1cba0e761b8ea01ee125ce2addccc0ee171f6 (diff) | |
download | mariadb-git-63b2a551bf10181b0727e9b3f1240e73e5b80158.tar.gz |
processing trunsactional tables in query cache
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/table.h b/sql/table.h index 259c34030b2..19be602e341 100644 --- a/sql/table.h +++ b/sql/table.h @@ -137,6 +137,7 @@ struct st_table { typedef struct st_table_list { struct st_table_list *next; char *db,*name,*real_name; + uint32 db_length, real_name_length; Item *on_expr; /* Used with outer join */ struct st_table_list *natural_join; /* natural join on this table*/ List<String> *use_index,*ignore_index; @@ -149,6 +150,12 @@ typedef struct st_table_list { bool shared; /* Used twice in union */ } TABLE_LIST; +typedef struct st_changed_table_list { + struct st_changed_table_list *next; + char *key, *table_name; + uint32 key_length; +} CHANGED_TABLE_LIST; + typedef struct st_open_table_list { struct st_open_table_list *next; |