~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/symlink.result

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
Table   Op      Msg_type        Msg_text
32
32
test.t9 optimize        status  OK
33
33
SET GLOBAL myisam_sort_buffer_size=1024;
34
 
repair table t9;
 
34
check table t9;
35
35
Table   Op      Msg_type        Msg_text
36
 
test.t9 repair  error   myisam_sort_buffer_size is too small
37
 
test.t9 repair  warning Number of rows changed from 0 to 16724
38
 
test.t9 repair  status  OK
 
36
test.t9 check   status  OK
39
37
alter table t9 add column c int not null;
40
38
show create table t9;
41
39
Table   Create Table
146
144
42
147
145
drop table t1;
148
146
End of 4.1 tests
149
 
SET SESSION keep_files_on_create = TRUE;
150
 
CREATE TABLE t1 (a INT) ENGINE MYISAM;
151
 
Got one of the listed errors
152
 
SET SESSION keep_files_on_create = FALSE;
153
 
CREATE TABLE t1 (a INT) ENGINE MYISAM;
154
 
DROP TABLE t1;
155
147
End of 5.0 tests
156
148
CREATE TABLE t1(a INT)
157
149
INDEX DIRECTORY='TEST_DIR/master-data/mysql';