~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/analyze.result

  • 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:
1
1
create table t1 (a bigint);
2
 
lock tables t1 write;
3
2
insert into t1 values(0);
4
3
analyze table t1;
5
4
Table   Op      Msg_type        Msg_text
6
5
test.t1 analyze status  OK
7
 
unlock tables;
8
6
check table t1;
9
7
Table   Op      Msg_type        Msg_text
10
8
test.t1 check   status  OK
11
9
drop table t1;
12
10
create table t1 (a bigint);
13
11
insert into t1 values(0);
14
 
lock tables t1 write;
15
12
delete from t1;
16
13
analyze table t1;
17
14
Table   Op      Msg_type        Msg_text
18
15
test.t1 analyze status  OK
19
 
unlock tables;
20
16
check table t1;
21
17
Table   Op      Msg_type        Msg_text
22
18
test.t1 check   status  OK