~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_str.test

  • Committer: Brian Aker
  • Date: 2009-02-27 21:38:40 UTC
  • Revision ID: brian@tangent.org-20090227213840-r9hq3sfk8d8qrg72
Code cleanup in signal_handler.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
select 'hello',"'hello'",'""hello""','''h''e''l''l''o''',"hel""lo",'hel\'lo';
10
10
select 'hello' 'monty';
11
11
select length('\n\t\r\b\0\_\%\\');
 
12
select bit_length('\n\t\r\b\0\_\%\\');
12
13
select char_length('\n\t\r\b\0\_\%\\');
13
 
select character_length('\n\t\r\b\0\_\%\\');
14
14
select length('\n\t\n\b\0\\_\\%\\');
15
15
select concat('monty',' was here ','again'),length('hello'),char(ascii('h')),ord('h');
16
16
select hex(char(256));
140
140
# Test bug in concat_ws
141
141
#
142
142
 
143
 
CREATE TEMPORARY TABLE t1 (
 
143
CREATE TABLE t1 (
144
144
  id int NOT NULL,
145
145
  title varchar(255) default NULL,
146
146
  prio int default NULL,
164
164
# Test bug in AES_DECRYPT() when called with wrong argument
165
165
#
166
166
 
167
 
CREATE TEMPORARY TABLE t1 (id int NOT NULL auto_increment, tmp text NOT NULL, KEY id (id)) ENGINE=MyISAM;
 
167
CREATE TABLE t1 (id int NOT NULL auto_increment, tmp text NOT NULL, KEY id (id)) ENGINE=MyISAM;
168
168
INSERT INTO t1 VALUES (1, 'a545f661efdd1fb66fdee3aab79945bf');
169
169
DROP TABLE t1;
170
170
 
183
183
#
184
184
# test for #739
185
185
 
186
 
CREATE TEMPORARY TABLE t1 (title text) ENGINE=MyISAM;
 
186
CREATE TABLE t1 (title text) ENGINE=MyISAM;
187
187
INSERT INTO t1 VALUES ('Congress reconvenes in September to debate welfare and adult education');
188
188
INSERT INTO t1 VALUES ('House passes the CAREERS bill');
189
189
SELECT CONCAT("</a>",RPAD("",(55 - LENGTH(title)),".")) from t1;
330
330
# Bug #7751 - conversion for a bigint constant 
331
331
#
332
332
 
333
 
CREATE TEMPORARY TABLE t1 (
 
333
CREATE TABLE t1 (
334
334
  id int NOT NULL auto_increment,
335
335
  a bigint default NULL,
336
336
  PRIMARY KEY  (id)
512
512
#
513
513
# Bug #31758 inet_ntoa, oct, crashes server with null + filesort 
514
514
#
515
 
create TEMPORARY table t1 (a bigint not null)engine=myisam;
 
515
create table t1 (a bigint not null)engine=myisam;
516
516
insert into t1 set a = 1024*1024*1024*4;
517
517
drop table t1;
518
 
create TEMPORARY table t1 (a char(36) not null)engine=myisam;
 
518
create table t1 (a char(36) not null)engine=myisam;
519
519
insert ignore into t1 set a = ' ';
520
520
insert ignore into t1 set a = ' ';
521
521
select * from t1 order by (oct(a));