~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

  • Committer: lbieber
  • Date: 2010-10-07 15:39:23 UTC
  • mfrom: (1819.1.2 build)
  • Revision ID: lbieber@orisndriz08-20101007153923-e9rwa9ha5oyhjdc2
Merge Monty - Bug 655294: load_data() function returns null if file is invalid 
Merge Monty - Bug 655342: select into outfile creates a garbage file on no results
Merge Monty - Fixes the haildb build

Show diffs side-by-side

added added

removed removed

Lines of Context:
721
721
1      
722
722
drop table t1;
723
723
select load_file("lkjlkj");
724
 
load_file("lkjlkj")
725
 
NULL
726
 
select ifnull(load_file("lkjlkj"),"it's null");
727
 
ifnull(load_file("lkjlkj"),"it's null")
728
 
it's null
 
724
ERROR HY000: The file 'lkjlkj' must be in the database directory or be readable by all
729
725
CREATE TABLE t1 (a varchar(10));
730
726
INSERT INTO t1 VALUES ('abc'), ('xyz');
731
727
SELECT a, CONCAT(a,' ',a) AS c FROM t1