~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/join.test

MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
506
506
-- error 1052
507
507
select * from (t1 natural join t2) natural join (t3 join (t4 natural join t5) on (b < z));
508
508
 
509
 
#
510
 
# Bug #17523 natural join and information_schema
511
 
#
512
 
# We mask out the Privileges column because it differs with embedded server
513
 
--replace_column 32 #
514
 
query_vertical 
515
 
select * from information_schema.statistics join information_schema.columns
516
 
              using(table_name,column_name) where table_name='user';
517
 
 
518
509
drop table t1;
519
510
drop table t2;
520
511
drop table t3;