mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
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)
This commit is contained in:
parent
fea1551653
commit
1540407e60
4 changed files with 84 additions and 20 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue