~drizzle-trunk/drizzle/development

784.3.3 by Stewart Smith
fix archive_basic for drizzle
1
-- source include/have_archive.inc
2
590.1.8 by Stewart Smith
add simple archive test that shows that the simple operation of inserting into a table is currently broken
3
CREATE TABLE t1 (
4
  Period int DEFAULT '0000' NOT NULL,
5
  Varor_period int DEFAULT '0' NOT NULL
6
) ENGINE=archive;
7
8
INSERT INTO t1 VALUES (9410,9412);
9
10
SELECT * FROM t1;
11
784.3.3 by Stewart Smith
fix archive_basic for drizzle
12
DROP TABLE t1;