Commit e8cc8462 authored by unknown's avatar unknown

Merge sanja.is.com.ua:/home/bell/mysql/mysql-4

into sanja.is.com.ua:/home/bell/mysql/work.etalon


sql/sql_class.h:
  Auto merged
sql/table.h:
  Auto merged
parents dad9a12b 5c6902a4
...@@ -492,7 +492,10 @@ public: ...@@ -492,7 +492,10 @@ public:
CHANGED_TABLE_LIST * changed_table_dup(TABLE *table); CHANGED_TABLE_LIST * changed_table_dup(TABLE *table);
}; };
/*
Used to hold information about file and file structure in exchainge
via non-DB file (...INTO OUTFILE..., ...LOAD DATA...)
*/
class sql_exchange :public Sql_alloc class sql_exchange :public Sql_alloc
{ {
public: public:
......
...@@ -112,7 +112,7 @@ struct st_table { ...@@ -112,7 +112,7 @@ struct st_table {
char *table_name,*real_name,*path; char *table_name,*real_name,*path;
uint key_length; /* Length of key */ uint key_length; /* Length of key */
uint tablenr,used_fields,null_bytes; uint tablenr,used_fields,null_bytes;
table_map map; table_map map; /* ID bit of table (1,2,4,8,16...) */
ulong version,flush_version; ulong version,flush_version;
uchar *null_flags; uchar *null_flags;
IO_CACHE *io_cache; /* If sorted trough file*/ IO_CACHE *io_cache; /* If sorted trough file*/
...@@ -141,6 +141,7 @@ typedef struct st_table_list { ...@@ -141,6 +141,7 @@ typedef struct st_table_list {
uint32 db_length, real_name_length; uint32 db_length, real_name_length;
Item *on_expr; /* Used with outer join */ Item *on_expr; /* Used with outer join */
struct st_table_list *natural_join; /* natural join on this table*/ 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; TABLE *table;
GRANT_INFO grant; GRANT_INFO grant;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment