~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/subselect.test

  • 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:
3036
3036
#
3037
3037
CREATE TABLE t1 (s1 char(1)) ENGINE=MyISAM;
3038
3038
INSERT INTO t1 VALUES ('a');
3039
 
SELECT * FROM t1 WHERE _utf8'a' = ANY (SELECT s1 FROM t1);
 
3039
SELECT * FROM t1 WHERE 'a' = ANY (SELECT s1 FROM t1);
3040
3040
DROP TABLE t1;
3041
3041
 
3042
3042
#