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,19 @@
drop database if exists db1;
create database if not exists db1;
use db1;
drop table if exists test;
create table test(c1 int primary key, c2 int, c3 int);
insert into test values(1,1,1);
insert into test values(2,2,2);
set @@global.ob_enable_plan_cache= 0;
use db1;
update test set c2=c1+c2, c3=c2+c1;
succeed
succeed
select * from test;
c1 c2 c3
1 2 3
2 4 6
set @@global.ob_enable_plan_cache= 1;
drop table test;
drop database db1;