diff options
author | monty@hundin.mysql.fi <> | 2002-11-07 04:02:37 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-11-07 04:02:37 +0200 |
commit | 65badfff1a6dec4de5bf2d29cf143c72b5dd8830 (patch) | |
tree | e27391c030124332f69b62384e7e47e39f8e1818 /sql/sql_repl.h | |
parent | a6e5f9217c5443fb5cedfef012517f37b4df6cf1 (diff) | |
download | mariadb-git-65badfff1a6dec4de5bf2d29cf143c72b5dd8830.tar.gz |
Put temporary files in binlog cache when using BEGIN/COMMIT
Let MySQL 4.0 read 4.1 .frm files without 4.1 specific extensions
New variables @@rand_seed1 and @@rand_seed2 (used by replication)
DROP TEMPORARY TABLE
Diffstat (limited to 'sql/sql_repl.h')
-rw-r--r-- | sql/sql_repl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_repl.h b/sql/sql_repl.h index 197fd03ec7c..15435382b08 100644 --- a/sql/sql_repl.h +++ b/sql/sql_repl.h @@ -43,13 +43,13 @@ int check_binlog_magic(IO_CACHE* log, const char** errmsg); typedef struct st_load_file_info { THD* thd; + my_off_t last_pos_in_file; sql_exchange* ex; List <Item> *fields; enum enum_duplicates handle_dup; char* db; char* table_name; - bool wrote_create_file; - my_off_t last_pos_in_file; + bool wrote_create_file, log_delayed; } LOAD_FILE_INFO; int log_loaded_block(IO_CACHE* file); |