Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1020,6 +1020,7 @@ select * from dense_rank01;
id sex
5 m
drop database test11_table;
drop account acc04;
drop snapshot sp09;
drop snapshot sp10;
drop snapshot sp11;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,7 @@ use test11_table;
select * from dense_rank01;
drop database test11_table;
-- @session
drop account acc04;
drop snapshot sp09;
drop snapshot sp10;
drop snapshot sp11;
Expand Down
1 change: 1 addition & 0 deletions test/distributed/cases/pitr/pitr_basic.result
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ pitr05 2024-12-25 16:34:55 2024-12-25 16:34:55 cluster * * *
pitr10 2024-12-25 16:34:55 2024-12-25 16:34:55 database sys db01 * 1 h
pitr12 2024-12-25 16:34:55 2024-12-25 16:34:55 table sys db01 table01 1 h
drop account if exists acc01;
drop account if exists acc02;
create account acc01 admin_name = 'test_account' identified by '111';
drop pitr if exists pitr14;
create pitr pitr14 for account acc01 range 1 'h';
Expand Down
1 change: 1 addition & 0 deletions test/distributed/cases/pitr/pitr_basic.sql
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ show pitr;

--sys to normal account level success
drop account if exists acc01;
drop account if exists acc02;
create account acc01 admin_name = 'test_account' identified by '111';
drop pitr if exists pitr14;
create pitr pitr14 for account acc01 range 1 'h';
Expand Down
Loading