~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect.result

Merge in error message fix for just one type of error for unknown table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1036
1036
# error in IN
1037
1037
#
1038
1038
select t1.Continent, t2.Name, t2.Population from t1 LEFT JOIN t2 ON t1.Code = t2.Country  where t2.Population IN (select max(t2.Population) AS Population from t2, t1 where t2.Country = t1.Code group by Continent);
1039
 
ERROR HY000: Unknown table 'test.t1'
 
1039
ERROR 42S02: Unknown table 'test.t1'
1040
1040
#
1041
1041
# complex subquery
1042
1042
#