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

Adjusted test cases of the suite funcs_1.

This commit is contained in:
Igor Babaev
2011-12-16 08:05:14 -08:00
parent a4073c1990
commit 68dad67762
4 changed files with 15 additions and 0 deletions

View File

@ -21081,6 +21081,8 @@ f59 f60 f61 a b
2 double 6 2 2
3 single-f3 6 NULL 3
4 single 4 NULL 4
set @save_optimizer_switch=@@optimizer_switch;
set optimizer_switch='outer_join_with_cache=off';
Create or replace view test.v1 as
Select t1.f59 t1_f59, t2.f59 t2_f59, t1.f60 t1_f60, t2.f60 t2_f60,
t1.f61 t1_f61, t2.f61 t2_f61
@ -21111,6 +21113,7 @@ f59 f60 a b
1 single 1 NULL
2 double 2 2
3 single-f3 3 NULL
set optimizer_switch=@save_optimizer_switch;
drop table t1, t2;
drop view v1 ;
Use test;