diff options
author | bell@sanja.is.com.ua <> | 2002-05-07 00:04:16 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-05-07 00:04:16 +0300 |
commit | 494184ff5fe9b614d843d622bc1a0230c970fe3f (patch) | |
tree | 28f6bf8b6eba7559f3589a4655aa64349d0b84cc /sql/table.h | |
parent | 06ed215c37c436cf295ae7b91aa4872a50a9642c (diff) | |
download | mariadb-git-494184ff5fe9b614d843d622bc1a0230c970fe3f.tar.gz |
new SELECT_LEX structure
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sql/table.h b/sql/table.h index 59cb28038bf..e30e29ddd3f 100644 --- a/sql/table.h +++ b/sql/table.h @@ -139,18 +139,18 @@ 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*/ + Item *on_expr; /* Used with outer join */ + struct st_table_list *natural_join; /* natural join on this table*/ /* ... join ... USE INDEX ... IGNORE INDEX */ - List<String> *use_index,*ignore_index; + List<String> *use_index, *ignore_index; TABLE *table; GRANT_INFO grant; thr_lock_type lock_type; - uint outer_join; /* Which join type */ - bool straight; /* optimize with prev table */ - bool updating; /* for replicate-do/ignore table */ - bool shared; /* Used twice in union */ - void *derived; + uint outer_join; /* Which join type */ + bool straight; /* optimize with prev table */ + bool updating; /* for replicate-do/ignore table */ + bool shared; /* Used twice in union */ + void *derived; /* SELECT_LEX_UNIT of derived table */ } TABLE_LIST; typedef struct st_changed_table_list { |