[scn] rename log_ts to scn

This commit is contained in:
obdev
2022-11-28 02:29:00 +00:00
committed by ob-robot
parent 89c7502360
commit 59db61e110
316 changed files with 219033 additions and 6033 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -20,11 +20,11 @@ commit;
commit/*hint+commit*/;
commit work;
commit/*hint+commit work*/ work;
--sql_mode oracle
commit comment 'comment transaction commit';
commit work comment 'comment txn commit work';
commit/*hint+commit tx hint*/ comment 'comment + hint';
commit/*hint+commit tx work hint*/ work comment 'comment + hint';
#--sql_mode oracle
#commit comment 'comment transaction commit';
#commit work comment 'comment txn commit work';
#commit/*hint+commit tx hint*/ comment 'comment + hint';
#commit/*hint+commit tx work hint*/ work comment 'comment + hint';
--sql_mode mysql
rollback;
rollback/*hint+rollback*/;
@ -289,12 +289,12 @@ select unique distinct( max(c1)), c2 from t1;
select unique(*) from t1;
########################## test for returning ###################################
--sql_mode oracle
delete from t1 where c1 = 1 returning c1 + 1, c2 * 2;
update t1 set c1 = 1 where c2 = 2 returning c1, c2 + 3, c3 * c4;
insert into t1 values(1, 2, 3) returning c1, c2, c3;
--error 5001
replace into t1 values(1, 2) returning c1, c2, c3, c4, c5, c6;
#--sql_mode oracle
#delete from t1 where c1 = 1 returning c1 + 1, c2 * 2;
#update t1 set c1 = 1 where c2 = 2 returning c1, c2 + 3, c3 * c4;
#insert into t1 values(1, 2, 3) returning c1, c2, c3;
#--error 5001
#replace into t1 values(1, 2) returning c1, c2, c3, c4, c5, c6;
############# tablegroup ##################
--sql_mode mysql
alter tablegroup tg2 add table t1,t2;