~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/connect.test

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-30 02:39:13 UTC
  • mto: (1115.3.11 captain)
  • mto: This revision was merged to the branch mainline in revision 1121.
  • Revision ID: osullivan.padraig@gmail.com-20090730023913-o2zuocp32l6btnc2
Removing references to MY_BITMAP throughout the code base and updating calls
to MyBitmap in various places to use the new interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# with right and wrong password, with and without database
3
3
# Unfortunately the check is incomplete as we can't connect without database
4
4
 
 
5
# check that CSV engine was compiled in, as the test relies on the presence
 
6
# of the log tables (which are CSV-based). By connect mysql; show tables;
 
7
--source include/have_csv.inc
 
8
 
5
9
--disable_warnings
6
10
drop table if exists t1,t2;
7
11
--enable_warnings
69
73
set @id := 1;
70
74
delete from t1 where id like @id;
71
75
disconnect con7;
72
 
--sleep 0.5
 
76
--sleep 5
73
77
connection default;
74
78
drop table t1;
75
79