diff options
author | unknown <bell@sanja.is.com.ua> | 2004-04-05 11:16:44 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-04-05 11:16:44 +0300 |
commit | 358396e8c69c6ce07806c30d97458c38b7eec16f (patch) | |
tree | d1a4e18b9ac487eeacfa0e534fcbaa658f627817 /sql/table.h | |
parent | 3021893d8a882fbd295836b9093cd55eb19d4e61 (diff) | |
parent | 5339d094921e12475b68b5afe9ff441bdf0fdeaf (diff) | |
download | mariadb-git-358396e8c69c6ce07806c30d97458c38b7eec16f.tar.gz |
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-ps2-4.1
sql/table.h:
Auto merged
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/table.h b/sql/table.h index b595887820a..0bae880a89f 100644 --- a/sql/table.h +++ b/sql/table.h @@ -26,6 +26,7 @@ class st_select_lex_unit; typedef struct st_order { struct st_order *next; Item **item; /* Point at item in select fields */ + Item *item_ptr; /* Storage for initial item */ bool asc; /* true if ascending */ bool free_me; /* true if item isn't shared */ bool in_field_list; /* true if in select field list */ @@ -192,6 +193,7 @@ typedef struct st_table_list bool updating; /* for replicate-do/ignore table */ bool force_index; /* Prefer index over table scan */ bool ignore_leaves; /* Preload only non-leaf nodes */ + bool non_cachable_table; /* stop PS caching */ } TABLE_LIST; typedef struct st_changed_table_list |