diff options
author | msvensson@pilot.mysql.com <> | 2008-02-28 12:21:44 +0100 |
---|---|---|
committer | msvensson@pilot.mysql.com <> | 2008-02-28 12:21:44 +0100 |
commit | 56a354794c9c9ef13aad39ac45c5d525024c988c (patch) | |
tree | 1a7e1ed12d61ecd778a2370fd8db32bb46c5015d /mysql-test/t/sp.test | |
parent | ae3f30828b48708f0c4ceade46dba08fe872c92e (diff) | |
parent | 0462076eacd374299d8599407a38ab8d516b5ed1 (diff) | |
download | mariadb-git-56a354794c9c9ef13aad39ac45c5d525024c988c.tar.gz |
Merge pilot.mysql.com:/data/msvensson/mysql/mysql-5.1-rpl
into pilot.mysql.com:/data/msvensson/mysql/mysql-5.1-mtr
Diffstat (limited to 'mysql-test/t/sp.test')
-rw-r--r-- | mysql-test/t/sp.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/t/sp.test b/mysql-test/t/sp.test index bb9aae6dee6..d0422ee106e 100644 --- a/mysql-test/t/sp.test +++ b/mysql-test/t/sp.test @@ -703,7 +703,7 @@ drop procedure into_test4| --disable_warnings drop procedure if exists into_outfile| --enable_warnings ---replace_result $MYSQLTEST_VARDIR .. +--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR eval create procedure into_outfile(x char(16), y int) begin insert into test.t1 values (x, y); @@ -722,7 +722,7 @@ drop procedure into_outfile| --disable_warnings drop procedure if exists into_dumpfile| --enable_warnings ---replace_result $MYSQLTEST_VARDIR .. +--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR eval create procedure into_dumpfile(x char(16), y int) begin insert into test.t1 values (x, y); @@ -5260,9 +5260,9 @@ drop procedure if exists bug13012| create procedure bug13012() BEGIN REPAIR TABLE t1; - BACKUP TABLE t1 to '../tmp'; + BACKUP TABLE t1 to '../../tmp'; DROP TABLE t1; - RESTORE TABLE t1 FROM '../tmp'; + RESTORE TABLE t1 FROM '../../tmp'; END| call bug13012()| --enable_warnings |