diff options
author | brian@zim.(none) <> | 2006-04-16 21:55:02 -0700 |
---|---|---|
committer | brian@zim.(none) <> | 2006-04-16 21:55:02 -0700 |
commit | 98f2cd44686140709dadd1877a1428966f6a7e7a (patch) | |
tree | b943a0f7d5f1f337603064d747d9a696fb8b32b0 /mysql-test/r/archive.result | |
parent | 79a50551cbb14215b7e90b71a52ec2eba6ecf1b6 (diff) | |
download | mariadb-git-98f2cd44686140709dadd1877a1428966f6a7e7a.tar.gz |
Fixed a few pieces around support for data directory.
Diffstat (limited to 'mysql-test/r/archive.result')
-rw-r--r-- | mysql-test/r/archive.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/archive.result b/mysql-test/r/archive.result index 0be99e071cd..09813458069 100644 --- a/mysql-test/r/archive.result +++ b/mysql-test/r/archive.result @@ -13809,4 +13809,11 @@ alter table t1 add unique key (i, v); select * from t1 where i between 2 and 4 and v in ('def','3r4f','lmn'); i v 4 3r4f +alter table t1 data directory="$MYSQLTEST_VARDIR/tmp"; +select * from t1; +i v +1 def +2 abc +4 3r4f +5 lmn drop table t1, t2, t4, t5; |