~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_str.test

  • Committer: Brian Aker
  • Date: 2009-06-16 00:53:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1094.
  • Revision ID: brian@gaz-20090616005322-w0ode4jul9z8s2y9
Partial fix for tests for tmp

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
# Test bug in concat_ws
140
140
#
141
141
 
142
 
CREATE TABLE t1 (
 
142
CREATE TEMPORARY TABLE t1 (
143
143
  id int NOT NULL,
144
144
  title varchar(255) default NULL,
145
145
  prio int default NULL,
163
163
# Test bug in AES_DECRYPT() when called with wrong argument
164
164
#
165
165
 
166
 
CREATE TABLE t1 (id int NOT NULL auto_increment, tmp text NOT NULL, KEY id (id)) ENGINE=MyISAM;
 
166
CREATE TEMPORARY TABLE t1 (id int NOT NULL auto_increment, tmp text NOT NULL, KEY id (id)) ENGINE=MyISAM;
167
167
INSERT INTO t1 VALUES (1, 'a545f661efdd1fb66fdee3aab79945bf');
168
168
DROP TABLE t1;
169
169
 
182
182
#
183
183
# test for #739
184
184
 
185
 
CREATE TABLE t1 (title text) ENGINE=MyISAM;
 
185
CREATE TEMPORARY TABLE t1 (title text) ENGINE=MyISAM;
186
186
INSERT INTO t1 VALUES ('Congress reconvenes in September to debate welfare and adult education');
187
187
INSERT INTO t1 VALUES ('House passes the CAREERS bill');
188
188
SELECT CONCAT("</a>",RPAD("",(55 - LENGTH(title)),".")) from t1;
329
329
# Bug #7751 - conversion for a bigint constant 
330
330
#
331
331
 
332
 
CREATE TABLE t1 (
 
332
CREATE TEMPORARY TABLE t1 (
333
333
  id int NOT NULL auto_increment,
334
334
  a bigint default NULL,
335
335
  PRIMARY KEY  (id)
511
511
#
512
512
# Bug #31758 inet_ntoa, oct, crashes server with null + filesort 
513
513
#
514
 
create table t1 (a bigint not null)engine=myisam;
 
514
create TEMPORARY table t1 (a bigint not null)engine=myisam;
515
515
insert into t1 set a = 1024*1024*1024*4;
516
516
drop table t1;
517
 
create table t1 (a char(36) not null)engine=myisam;
 
517
create TEMPORARY table t1 (a char(36) not null)engine=myisam;
518
518
insert ignore into t1 set a = ' ';
519
519
insert ignore into t1 set a = ' ';
520
520
select * from t1 order by (oct(a));