~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/metadata.test

  • Committer: Brian Aker
  • Date: 2009-02-05 09:11:16 UTC
  • Revision ID: brian@tangent.org-20090205091116-iy0ersp6bhyzt1ad
Removed dead variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
#
51
51
# Bug #11688: Bad mysql_info() results in multi-results
52
52
#
53
 
# No multi-statements in Drizzle
54
 
#
55
 
#--enable_info
56
 
#delimiter //;
57
 
#create table t1 (i int);
58
 
#insert into t1 values (1),(2),(3);
59
 
#select * from t1 where i = 2;
60
 
#drop table t1;//
61
 
#delimiter ;//
62
 
#--disable_info
 
53
--enable_info
 
54
delimiter //;
 
55
create table t1 (i int);
 
56
insert into t1 values (1),(2),(3);
 
57
select * from t1 where i = 2;
 
58
drop table t1;//
 
59
delimiter ;//
 
60
--disable_info
63
61
 
64
62
# End of 4.1 tests
65
63