~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/subselect.test

Merge in decomplication of our error system when reading through the table
message.

Show diffs side-by-side

added added

removed removed

Lines of Context:
567
567
--echo #
568
568
--echo # error in IN
569
569
--echo #
570
 
--error ER_NO_SUCH_TABLE
 
570
--error ER_TABLE_UNKNOWN
571
571
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);
572
572
 
573
573
--echo #