~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

merge innobase 1.0.9 build fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
717
717
1000000
718
718
1      
719
719
drop table t1;
720
 
select load_file("lkjlkj");
721
 
ERROR HY000: The file 'lkjlkj' must be in the schema directory or be readable by all
 
720
select load_file(DRIZZLETEST_BAD_FILE);
 
721
ERROR HY000: The file 'DRIZZLETEST_BAD_FILE' must be in the schema directory or be readable by all
722
722
CREATE TABLE t1 (a varchar(10));
723
723
INSERT INTO t1 VALUES ('abc'), ('xyz');
724
724
SELECT a, CONCAT(a,' ',a) AS c FROM t1