1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

join_outer.test:

Correction after manual merge.


mysql-test/t/join_outer.test:
  Correction after manual merge.
This commit is contained in:
unknown
2005-03-13 01:07:01 -08:00
parent 7bf4a418cb
commit dad8e1f59a

View File

@ -588,6 +588,12 @@ INSERT INTO t2 VALUES("0", "SV", "0-SV");
INSERT INTO t2 VALUES("10", "EN", "10-EN");
INSERT INTO t2 VALUES("10", "SV", "10-SV");
SELECT t1.id, t1.text_id, t2.text_data
FROM t1 LEFT JOIN t2
ON t1.text_id = t2.text_id
AND t2.language_id = 'SV'
WHERE (t1.id LIKE '%' OR t2.text_data LIKE '%');
DROP TABLE t1, t2;
# Test for bug #5896