mark some file to been opensource for ce-farm

This commit is contained in:
niyuhang
2023-11-15 11:44:43 +00:00
committed by ob-robot
parent 4900683cff
commit c8ace58297
685 changed files with 1080566 additions and 111051 deletions

View File

@ -0,0 +1,7 @@
drop table if exists t1,t2,left_table;
create table t1(c0 int primary key, c1 int , c2 int);
insert into t1 values(1,10,100);
select c1+10 c3, c2 from t1 where c0=1;
c3 c2
20 100
drop table t1;