~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

  • Committer: patrick crews
  • Date: 2010-11-03 17:30:08 UTC
  • mto: (1902.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: gleebix@gmail.com-20101103173008-qogtvgzwydwsmpmd
Tweak func_str and outfile to deal with the limitations of only 128 chars available for filename + path in error messages

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("VARDIR/lkjlkj");
721
 
ERROR HY000: The file 'VARDIR/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