~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/archive_basic.test

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
CREATE TABLE t1 (
3
 
  Period int DEFAULT '0000' NOT NULL,
4
 
  Varor_period int DEFAULT '0' NOT NULL
5
 
) ENGINE=archive;
6
 
 
7
 
INSERT INTO t1 VALUES (9410,9412);
8
 
 
9
 
SELECT * FROM t1;
10
 
 
11
 
DROP TABLE t1;