~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/select.result

Merged Eric from lp:~eday/drizzle/eday-merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
2584
2584
DROP TABLE t1;
2585
2585
CREATE TABLE t1 (c0 int);
2586
2586
CREATE TABLE t2 (c0 int);
2587
 
INSERT INTO t1 VALUES(@@connect_timeout);
2588
 
INSERT INTO t2 VALUES(@@connect_timeout);
2589
 
SELECT * FROM t1 JOIN t2 ON t1.c0 = t2.c0 WHERE (t1.c0 <=> @@connect_timeout);
 
2587
INSERT INTO t1 VALUES(@@server_id);
 
2588
INSERT INTO t2 VALUES(@@server_id);
 
2589
SELECT * FROM t1 JOIN t2 ON t1.c0 = t2.c0 WHERE (t1.c0 <=> @@server_id);
2590
2590
c0      c0
2591
2591
X       X
2592
2592
DROP TABLE t1, t2;