diff options
author | monty@mashka.mysql.fi <> | 2002-09-18 21:04:49 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-09-18 21:04:49 +0300 |
commit | f638ee6df91a32ed767fa67cf643dfa07f9a82d4 (patch) | |
tree | 83f34b98c4e43e4f23f9b941d93676b65ef1b657 /sql/table.h | |
parent | dfd0f82b9368cd4d023ebc1f6eab6e88622b060c (diff) | |
download | mariadb-git-f638ee6df91a32ed767fa67cf643dfa07f9a82d4.tar.gz |
Added code to flush a bulk_insert index.
This fixes a bug when doing multi-row inserts on table with an auto_increment key that is not in the first key segment.
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.h b/sql/table.h index 229d41a2df7..2c9a1b2c16a 100644 --- a/sql/table.h +++ b/sql/table.h @@ -91,7 +91,7 @@ struct st_table { my_bool null_row; /* All columns are null */ my_bool maybe_null,outer_join; /* Used with OUTER JOIN */ my_bool distinct,const_table,no_rows; - my_bool key_read; + my_bool key_read, bulk_insert; my_bool crypted; my_bool db_low_byte_first; /* Portable row format */ my_bool locked_by_flush; |