~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/analyze.test

  • Committer: Brian Aker
  • Date: 2009-06-05 23:10:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1055.
  • Revision ID: brian@gaz-20090605231006-01nyw7pfpj2z2v8p
Remove guts in parser for LOCK TABLE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#
15
15
 
16
16
create table t1 (a bigint);
17
 
lock tables t1 write;
18
17
insert into t1 values(0);
19
18
analyze table t1;
20
 
unlock tables;
21
19
check table t1;
22
20
 
23
21
drop table t1;
24
22
 
25
23
create table t1 (a bigint);
26
24
insert into t1 values(0);
27
 
lock tables t1 write;
28
25
delete from t1;
29
26
analyze table t1;
30
 
unlock tables;
31
27
check table t1;
32
28
 
33
29
drop table t1;