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 | 036656e74befc0ccf07b644d59857b97808bddd9 (patch) | |
tree | d1a4e18b9ac487eeacfa0e534fcbaa658f627817 /sql/table.h | |
parent | f8b790d0271213ebc881ccdcd22e1a6ecdd2b20f (diff) | |
parent | 3c01162f0e642d535ec5a8912f77f9f4a96ad8d9 (diff) | |
download | mariadb-git-036656e74befc0ccf07b644d59857b97808bddd9.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 |