mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge sanja.is.com.ua:/home/bell/mysql/mysql-4
into sanja.is.com.ua:/home/bell/mysql/work-qc Docs/manual.texi: Auto merged sql/handler.cc: Auto merged sql/table.h: Auto merged
This commit is contained in:
@ -138,6 +138,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;
|
||||
@ -150,6 +151,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;
|
||||
|
Reference in New Issue
Block a user