diff options
author | unknown <monty@donna.mysql.fi> | 2001-03-09 03:38:18 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-03-09 03:38:18 +0200 |
commit | 7957ec7e339177d246a34491ccdda9851fc00956 (patch) | |
tree | 816c1657d4d15fbff641ddc882052d6536790ed5 /sql/sql_insert.cc | |
parent | f34ebbd06a4522f37c7528ec3692a7a6fb6aaa0a (diff) | |
download | mariadb-git-7957ec7e339177d246a34491ccdda9851fc00956.tar.gz |
Fixed wrong option in mysql_install_db
Added delayed_user for delayed_threads
Don't use record cache when doing deletes
Docs/manual.texi:
Added link to activestate perl
mysql-test/t/delayed.test:
Added sleep for slow machines
scripts/mysql_install_db.sh:
Fixed wrong option
sql-bench/crash-me.sh:
Intialize some variables
sql/mysql_priv.h:
Added delayed_user for delayed_threads
sql/mysqld.cc:
Added delayed_user for delayed_threads
sql/sql_class.cc:
Added delayed_user for delayed_threads
sql/sql_delete.cc:
Don't use record cache when doing deletes
sql/sql_insert.cc:
Added delayed_user for delayed_threads
tests/fork3_test.pl:
Added periodic check/repair of table
Diffstat (limited to 'sql/sql_insert.cc')
-rw-r--r-- | sql/sql_insert.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_insert.cc b/sql/sql_insert.cc index 8e8f46b2e1f..e92c5255ef8 100644 --- a/sql/sql_insert.cc +++ b/sql/sql_insert.cc @@ -489,7 +489,8 @@ public: table(0),tables_in_use(0),stacked_inserts(0), status(0), dead(0), group_count(0) { - thd.user=0; thd.host=(char*) localhost; + thd.user=thd.priv_user=(char*) delayed_user; + thd.host=(char*) localhost; thd.current_tablenr=0; thd.version=refresh_version; thd.command=COM_DELAYED_INSERT; |