summaryrefslogtreecommitdiff
path: root/mysql-test/r/archive.result
diff options
context:
space:
mode:
authorunknown <brian@zim.(none)>2006-04-16 21:55:02 -0700
committerunknown <brian@zim.(none)>2006-04-16 21:55:02 -0700
commit1540407e60ef07225d7a0482c1546c2c833bc94e (patch)
treeb943a0f7d5f1f337603064d747d9a696fb8b32b0 /mysql-test/r/archive.result
parentfea1551653857017ec3dfbb00ed15ed384c9afee (diff)
downloadmariadb-git-1540407e60ef07225d7a0482c1546c2c833bc94e.tar.gz
Fixed a few pieces around support for data directory.
mysql-test/r/archive.result: Adding test case for data directory support in create table. mysql-test/t/archive.test: Added test for "data directory" support in archive. sql/ha_archive.cc: Updated comments, added printable bits for support of "data directory" sql/ha_archive.h: Added real_path to share (will come in handy in later code)
Diffstat (limited to 'mysql-test/r/archive.result')
-rw-r--r--mysql-test/r/archive.result7
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;