mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 11:57:38 +02:00
CREATE TABLE and frm-less discovering engines.
Now CREATE TABLE does not write the frm file on disk, if the engine can discover it
This commit is contained in:
parent
b3e70c4ae7
commit
e06cb31719
20 changed files with 185 additions and 74 deletions
|
|
@ -18,6 +18,7 @@ select * from t1;
|
|||
--echo # show tables
|
||||
--echo #
|
||||
create table t2 (a int) engine=archive;
|
||||
select * from t2;
|
||||
remove_file $mysqld_datadir/test/t1.frm;
|
||||
flush tables;
|
||||
show tables;
|
||||
|
|
@ -84,6 +85,7 @@ drop table t1;
|
|||
--echo # archive_discover
|
||||
--echo #
|
||||
create table `a/../`(a int) engine=archive;
|
||||
select * from `a/../`; flush tables;
|
||||
remove_file $mysqld_datadir/test/a@002f@002e@002e@002f.frm;
|
||||
drop table `a/../`;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue