mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 07:35:32 +02:00
Merge mysql.com:/home/svoj/devel/bk/mysql-5.0-engines
into mysql.com:/home/svoj/devel/mysql/BUG26138/mysql-5.1-engines sql/handler.h: Auto merged sql/sql_table.cc: Auto merged storage/archive/ha_archive.cc: SCCS merged mysql-test/r/archive.result: Manually merged. mysql-test/t/archive.test: Manually merged. storage/example/ha_example.cc: Manually merged.
This commit is contained in:
commit
b8c217e6d9
5 changed files with 40 additions and 1 deletions
|
|
@ -12666,3 +12666,13 @@ t6 CREATE TABLE `t6` (
|
|||
KEY `a` (`a`)
|
||||
) ENGINE=ARCHIVE DEFAULT CHARSET=latin1
|
||||
DROP TABLE t1, t2, t4, t5, t6;
|
||||
drop table t1, t2, t4;
|
||||
create table t1 (i int) engine=archive;
|
||||
insert into t1 values (1);
|
||||
repair table t1 use_frm;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 repair status OK
|
||||
select * from t1;
|
||||
i
|
||||
1
|
||||
drop table t1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue