~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

  • Committer: Brian Aker
  • Date: 2010-10-10 02:07:52 UTC
  • mfrom: (1827.2.3 staging)
  • Revision ID: brian@tangent.org-20101010020752-ktv73isay5dxtvp3
Merge in switch on table_share_instance inheritance.

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 schema directory or be readable by all
 
721
ERROR HY000: The file 'lkjlkj' must be in the database 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