~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

  • Committer: patrick crews
  • Date: 2010-10-25 23:13:58 UTC
  • mto: (1878.8.1 drizzle1)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: gleebix@gmail.com-20101025231358-avbpaqukx1gybznv
Updated tests to use variable vardir rather than a hard-coded one

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