~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect_no_mat.result

  • Committer: Monty Taylor
  • Date: 2009-01-28 04:37:46 UTC
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 816.
  • Revision ID: mordred@inaugust.com-20090128043746-d2yukekishwn3ftm
TurnedĀ onĀ -Wshadow.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4031
4031
drop table t_in;
4032
4032
CREATE TABLE t1 (s1 char(1)) ENGINE=MyISAM;
4033
4033
INSERT INTO t1 VALUES ('a');
4034
 
SELECT * FROM t1 WHERE _utf8'a' = ANY (SELECT s1 FROM t1);
 
4034
SELECT * FROM t1 WHERE 'a' = ANY (SELECT s1 FROM t1);
4035
4035
s1
4036
4036
a
4037
4037
DROP TABLE t1;