~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/myisam.result

  • Committer: Brian Aker
  • Date: 2009-08-17 06:21:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090817062144-8lxn1sg93pd8nhev
Remove PACK_KEYS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1414
1414
Table   Non_unique      Key_name        Seq_in_index    Column_name     Collation       Cardinality     Sub_part        Packed  Null    Index_type      Comment Index_Comment
1415
1415
t1      1       a       1       a       A       8       NULL    NULL    YES     BTREE           
1416
1416
drop table t1;
1417
 
create temporary table t1 (c1 int) engine=myisam pack_keys=0;
1418
 
create temporary table t2 (c1 int) engine=myisam pack_keys=1;
1419
 
create temporary table t3 (c1 int) engine=myisam pack_keys=default;
1420
 
create temporary table t4 (c1 int) engine=myisam pack_keys=2;
1421
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '2' at line 1
1422
 
drop table t1, t2, t3;
1423
1417
CREATE TEMPORARY TABLE t1(a INT, b INT, KEY inx (a), UNIQUE KEY uinx (b)) ENGINE=MyISAM;
1424
1418
INSERT INTO t1(a,b) VALUES (1,1),(2,2),(3,3),(4,4),(5,5);
1425
1419
SELECT a FROM t1 FORCE INDEX (inx) WHERE a=1;