mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Two bug fixes
This commit is contained in:
@ -135,3 +135,19 @@ ID ParId tst tst1
|
||||
2 2 MSSQL Microsoft
|
||||
3 3 ORACLE ORACLE
|
||||
drop table parent, child;
|
||||
drop table if exists t1, t2 ;
|
||||
create table t1 (n numeric(10));
|
||||
create table t2 (n numeric(10));
|
||||
insert into t2 values (1),(2),(4),(8),(16),(32);
|
||||
select * from t2 left outer join t1 using (n);
|
||||
n n
|
||||
1 NULL
|
||||
2 NULL
|
||||
4 NULL
|
||||
8 NULL
|
||||
16 NULL
|
||||
32 NULL
|
||||
delete t1,t2 from t2 left outer join t1 using (n);
|
||||
select * from t2 left outer join t1 using (n);
|
||||
n n
|
||||
drop table if exists t1,t2 ;
|
||||
|
Reference in New Issue
Block a user