diff options
author | ramil@mysql.com <> | 2005-12-01 14:26:46 +0400 |
---|---|---|
committer | ramil@mysql.com <> | 2005-12-01 14:26:46 +0400 |
commit | 37cfade0b4e4ceccd6c0ae547f518ba456c83f54 (patch) | |
tree | 0e07e79eba1743235ab80eee39f51e0bfda3787b /sql/sql_class.h | |
parent | 6246425ef12086e675f6b16cf861e31612392f73 (diff) | |
download | mariadb-git-37cfade0b4e4ceccd6c0ae547f518ba456c83f54.tar.gz |
Fix for bug #14304: auto_increment field incorrect set from within stored procedure (insert select).
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 33be70ee674..0a5a615fe64 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -1090,7 +1090,7 @@ public: ha_rows cuted_fields, sent_row_count, examined_row_count; ulong client_capabilities; uint in_sub_stmt; - bool enable_slow_log, insert_id_used; + bool enable_slow_log, insert_id_used, clear_next_insert_id; my_bool no_send_ok; SAVEPOINT *savepoints; }; |