~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

  • Committer: Brian Aker
  • Date: 2010-10-14 18:58:48 UTC
  • mto: This revision was merged to the branch mainline in revision 1854.
  • Revision ID: brian@tangent.org-20101014185848-3alpd72oxyfpornx
This cleans up error messages to state "schema" instead of database.

Show diffs side-by-side

added added

removed removed

Lines of Context:
718
718
1      
719
719
drop table t1;
720
720
select load_file("lkjlkj");
721
 
ERROR HY000: The file 'lkjlkj' must be in the database directory or be readable by all
 
721
ERROR HY000: The file 'lkjlkj' 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