~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/mysqlcheck.test

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# Bug #13783  mysqlcheck tries to optimize and analyze information_schema
17
17
#
18
18
--replace_result 'Table is already up to date' OK
19
 
--exec $MYSQL_CHECK --all-databases --analyze --optimize
 
19
--exec $DRIZZLE_CHECK --all-databases --analyze --optimize
20
20
--replace_result 'Table is already up to date' OK
21
 
--exec $MYSQL_CHECK --analyze --optimize  --databases test information_schema mysql
22
 
--exec $MYSQL_CHECK --analyze --optimize information_schema schemata
 
21
--exec $DRIZZLE_CHECK --analyze --optimize  --databases test information_schema mysql
 
22
--exec $DRIZZLE_CHECK --analyze --optimize information_schema schemata
23
23
 
24
24
#
25
25
# Bug #16502: mysqlcheck tries to check views
27
27
create table t1 (a int);
28
28
create view v1 as select * from t1;
29
29
--replace_result 'Table is already up to date' OK
30
 
--exec $MYSQL_CHECK --analyze --optimize --databases test
 
30
--exec $DRIZZLE_CHECK --analyze --optimize --databases test
31
31
--replace_result 'Table is already up to date' OK
32
 
--exec $MYSQL_CHECK --all-in-1 --analyze --optimize --databases test
 
32
--exec $DRIZZLE_CHECK --all-in-1 --analyze --optimize --databases test
33
33
drop view v1;
34
34
drop table t1;
35
35
 
39
39
create table `t``1`(a int);
40
40
create table `t 1`(a int);
41
41
--replace_result 'Table is already up to date' OK
42
 
--exec $MYSQL_CHECK --databases test
 
42
--exec $DRIZZLE_CHECK --databases test
43
43
drop table `t``1`, `t 1`;
44
44
 
45
45
#
55
55
--remove_file $MYSQLTEST_VARDIR/master-data/d_bug25347/t_bug25347.MYI
56
56
--write_file $MYSQLTEST_VARDIR/master-data/d_bug25347/t_bug25347.MYI
57
57
EOF
58
 
--exec $MYSQL_CHECK --repair --databases d_bug25347
 
58
--exec $DRIZZLE_CHECK --repair --databases d_bug25347
59
59
--error 130
60
60
insert into t_bug25347 values (4),(5),(6);
61
 
--exec $MYSQL_CHECK --repair --use-frm --databases d_bug25347
 
61
--exec $DRIZZLE_CHECK --repair --use-frm --databases d_bug25347
62
62
insert into t_bug25347 values (7),(8),(9);
63
63
select * from t_bug25347;
64
64
select * from v_bug25347;
77
77
show tables;
78
78
--copy_file $MYSQLTEST_VARDIR/master-data/test/v1.frm $MYSQLTEST_VARDIR/master-data/test/v-1.frm
79
79
show tables;
80
 
--exec $MYSQL_CHECK --check-upgrade --fix-table-names --databases test
 
80
--exec $DRIZZLE_CHECK --check-upgrade --fix-table-names --databases test
81
81
show tables;
82
82
drop view v1, `v-1`;
83
83
drop table t1;