~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

  • 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:
311
311
domain
312
312
test.de
313
313
drop table t1;
314
 
CREATE TABLE t1 (
 
314
CREATE TEMPORARY TABLE t1 (
315
315
id int NOT NULL,
316
316
title varchar(255) default NULL,
317
317
prio int default NULL,
337
337
bugdesc REPLACE(bugdesc, 'xxxxxxxxxxxxxxxxxxxx', 'bbbbbbbbbbbbbbbbbbbb')
338
338
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa      aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
339
339
drop table t1;
340
 
CREATE TABLE t1 (id int NOT NULL auto_increment, tmp text NOT NULL, KEY id (id)) ENGINE=MyISAM;
 
340
CREATE TEMPORARY TABLE t1 (id int NOT NULL auto_increment, tmp text NOT NULL, KEY id (id)) ENGINE=MyISAM;
341
341
INSERT INTO t1 VALUES (1, 'a545f661efdd1fb66fdee3aab79945bf');
342
342
DROP TABLE t1;
343
343
CREATE TABLE t1 (
353
353
NULL
354
354
NULL
355
355
DROP TABLE t1;
356
 
CREATE TABLE t1 (title text) ENGINE=MyISAM;
 
356
CREATE TEMPORARY TABLE t1 (title text) ENGINE=MyISAM;
357
357
INSERT INTO t1 VALUES ('Congress reconvenes in September to debate welfare and adult education');
358
358
INSERT INTO t1 VALUES ('House passes the CAREERS bill');
359
359
SELECT CONCAT("</a>",RPAD("",(55 - LENGTH(title)),".")) from t1;
588
588
select trim(trailing NULL from 'xyz') as "must_be_null";
589
589
must_be_null
590
590
NULL
591
 
CREATE TABLE t1 (
 
591
CREATE TEMPORARY TABLE t1 (
592
592
id int NOT NULL auto_increment,
593
593
a bigint default NULL,
594
594
PRIMARY KEY  (id)
771
771
Warnings:
772
772
Note    1003    select `test`.`t1`.`s` AS `s` from `test`.`t1` where (trim(both 'y' from `test`.`t1`.`s`) > 'ab')
773
773
DROP TABLE t1;
774
 
create table t1 (a bigint not null)engine=myisam;
 
774
create TEMPORARY table t1 (a bigint not null)engine=myisam;
775
775
insert into t1 set a = 1024*1024*1024*4;
776
776
drop table t1;
777
 
create table t1 (a char(36) not null)engine=myisam;
 
777
create TEMPORARY table t1 (a char(36) not null)engine=myisam;
778
778
insert ignore into t1 set a = ' ';
779
779
insert ignore into t1 set a = ' ';
780
780
select * from t1 order by (oct(a));