~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/warnings.test

  • Committer: Brian Aker
  • Date: 2009-03-12 00:51:19 UTC
  • mfrom: (910.4.17 sparc)
  • Revision ID: brian@tangent.org-20090312005119-xemqiftml9jhyhcr
Merg'ing Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
create table t1(a char(10));
115
115
let $1=50;
116
116
disable_query_log;
 
117
begin;
117
118
while ($1)
118
119
{
119
120
  eval insert into t1 values('drizzle ab');
120
121
  dec $1;
121
122
}
 
123
commit;
122
124
enable_query_log;
123
125
alter table t1 add b char;
124
126
set max_error_count=10;