Commit e772a22d authored by unknown's avatar unknown

Merge bk-internal.mysql.com:/home/bk/mysql-5.0-maint

into  recycle.(none):/src/bug27144/my50-bug27144

parents 4390f788 65c34cc8
...@@ -7,13 +7,10 @@ ...@@ -7,13 +7,10 @@
# In the case of trouble you might want to skip this. # In the case of trouble you might want to skip this.
# #
# We're using --system things that probably doesn't work on Windows.
--source include/not_windows.inc
# Backup proc table # Backup proc table
--system rm -rf $MYSQLTEST_VARDIR/master-data/mysql/backup --copy_file $MYSQLTEST_VARDIR/master-data/mysql/proc.frm $MYSQLTEST_VARDIR/tmp/proc.frm
--system mkdir $MYSQLTEST_VARDIR/master-data/mysql/backup --copy_file $MYSQLTEST_VARDIR/master-data/mysql/proc.MYD $MYSQLTEST_VARDIR/tmp/proc.MYD
--system cp $MYSQLTEST_VARDIR/master-data/mysql/proc.* $MYSQLTEST_VARDIR/master-data/mysql/backup/ --copy_file $MYSQLTEST_VARDIR/master-data/mysql/proc.MYI $MYSQLTEST_VARDIR/tmp/proc.MYI
use test; use test;
...@@ -45,22 +42,25 @@ insert into t1 values (0); ...@@ -45,22 +42,25 @@ insert into t1 values (0);
flush table mysql.proc; flush table mysql.proc;
# Thrashing the .frm file # Thrashing the .frm file
--system echo 'saljdlfa' > $MYSQLTEST_VARDIR/master-data/mysql/proc.frm --write_file $MYSQLTEST_VARDIR/master-data/mysql/proc.frm
--replace_result $MYSQLTEST_VARDIR . master-data// '' saljdfa
EOF
--replace_result $MYSQLTEST_VARDIR . master-data// '' '\\' '/'
--error ER_NOT_FORM_FILE --error ER_NOT_FORM_FILE
call bug14233(); call bug14233();
--replace_result $MYSQLTEST_VARDIR . master-data// '' --replace_result $MYSQLTEST_VARDIR . master-data// '' '\\' '/'
--error ER_NOT_FORM_FILE --error ER_NOT_FORM_FILE
create view v1 as select bug14233_f(); create view v1 as select bug14233_f();
--replace_result $MYSQLTEST_VARDIR . master-data// '' --replace_result $MYSQLTEST_VARDIR . master-data// '' '\\' '/'
--error ER_NOT_FORM_FILE --error ER_NOT_FORM_FILE
insert into t1 values (0); insert into t1 values (0);
flush table mysql.proc; flush table mysql.proc;
# Drop the mysql.proc table # Drop the mysql.proc table
--system rm $MYSQLTEST_VARDIR/master-data/mysql/proc.* --remove_file $MYSQLTEST_VARDIR/master-data/mysql/proc.frm
--remove_file $MYSQLTEST_VARDIR/master-data/mysql/proc.MYD
--remove_file $MYSQLTEST_VARDIR/master-data/mysql/proc.MYI
--error ER_NO_SUCH_TABLE --error ER_NO_SUCH_TABLE
call bug14233(); call bug14233();
--error ER_NO_SUCH_TABLE --error ER_NO_SUCH_TABLE
...@@ -69,8 +69,12 @@ create view v1 as select bug14233_f(); ...@@ -69,8 +69,12 @@ create view v1 as select bug14233_f();
insert into t1 values (0); insert into t1 values (0);
# Restore mysql.proc # Restore mysql.proc
--system mv $MYSQLTEST_VARDIR/master-data/mysql/backup/* $MYSQLTEST_VARDIR/master-data/mysql/ --copy_file $MYSQLTEST_VARDIR/tmp/proc.frm $MYSQLTEST_VARDIR/master-data/mysql/proc.frm
--system rmdir $MYSQLTEST_VARDIR/master-data/mysql/backup --copy_file $MYSQLTEST_VARDIR/tmp/proc.MYD $MYSQLTEST_VARDIR/master-data/mysql/proc.MYD
--copy_file $MYSQLTEST_VARDIR/tmp/proc.MYI $MYSQLTEST_VARDIR/master-data/mysql/proc.MYI
--remove_file $MYSQLTEST_VARDIR/tmp/proc.frm
--remove_file $MYSQLTEST_VARDIR/tmp/proc.MYD
--remove_file $MYSQLTEST_VARDIR/tmp/proc.MYI
flush table mysql.proc; flush table mysql.proc;
flush privileges; flush privileges;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment