~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.result

  • Committer: Brian Aker
  • Date: 2009-11-11 15:49:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1212.
  • Revision ID: brian@gaz-20091111154959-jqu64e48gp9ig3tp
Updating with my change to to DECIMAL from NEWDECIMAL and Stewart's update
for protobuf to correctly store DECIMAL

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
drop table t1;
53
53
CREATE TEMPORARY TABLE t1 (
54
54
bool     char(0) default NULL,
55
 
not_null varchar(20) NOT NULL default '',
 
55
not_null varchar(20) binary NOT NULL default '',
56
56
misc     integer not null,
57
57
PRIMARY KEY  (not_null)
58
58
) ENGINE=MyISAM;
219
219
CREATE TABLE db2.t2 AS SELECT * FROM db2.t1;
220
220
CREATE TABLE t1 AS SELECT * FROM db2.t2;
221
221
CREATE TABLE t2 AS SELECT * FROM t1;
222
 
DROP DATABASE db1;
223
 
DROP DATABASE db2;
224
 
DROP TABLE t1, t2;