diff options
author | unknown <jcole@tetra.spaceapes.com> | 2001-01-27 03:24:05 -0600 |
---|---|---|
committer | unknown <jcole@tetra.spaceapes.com> | 2001-01-27 03:24:05 -0600 |
commit | 882f16d0369b4cd0742ac37650a71fc6f3b00a57 (patch) | |
tree | 26c80620cd60c2689d8eb1f3eca78b805558f0f8 /sql/table.h | |
parent | 77be4587507b753c647d86d1231def8e7d3313fc (diff) | |
download | mariadb-git-882f16d0369b4cd0742ac37650a71fc6f3b00a57.tar.gz |
Added --temp-pool option to mysqld. This will cause temporary files
created to use a small set of filenames, to try and avoid problems
in the Linux kernel.
mysys/Makefile.am:
Added my_bitmap.c
mysys/my_init.c:
my_bitmap code added
mysys/mysys_priv.h:
my_bitmap
sql/mysql_priv.h:
temp pool stuff.
sql/mysqld.cc:
--temp-pool option added
sql/sql_select.cc:
temp pool stuff
sql/table.h:
temp pool
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 8121271b479..c709be6a08c 100644 --- a/sql/table.h +++ b/sql/table.h @@ -119,6 +119,8 @@ struct st_table { key_part_map const_key_parts[MAX_KEY]; ulong query_id; + uint temp_pool_slot; + THD *in_use; /* Which thread uses this */ struct st_table *next,*prev; }; |