Skip to content

Commit

Permalink
remove unused statement in bvt (#17945)
Browse files Browse the repository at this point in the history
  • Loading branch information
aptend authored Aug 8, 2024
1 parent 6816ea5 commit e0e86d6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -737,10 +737,6 @@ set global enable_privilege_cache = on;
use mo_catalog;
drop table if exists cluster_table_1;
create cluster table cluster_table_1(a int, b int);
drop account if exists test_account1;
create account test_account1 admin_name = 'test_user' identified by '111';
drop account if exists test_account2;
create account test_account2 admin_name = 'test_user' identified by '111';
insert into cluster_table_1 values(0,0,0),(1,1,0);
insert into cluster_table_1 values(0,0,1),(1,1,1);
select * from cluster_table_1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -589,12 +589,6 @@ use mo_catalog;
drop table if exists cluster_table_1;
create cluster table cluster_table_1(a int, b int);

drop account if exists test_account1;
create account test_account1 admin_name = 'test_user' identified by '111';

drop account if exists test_account2;
create account test_account2 admin_name = 'test_user' identified by '111';

insert into cluster_table_1 values(0,0,0),(1,1,0);
insert into cluster_table_1 values(0,0,1),(1,1,1);
select * from cluster_table_1;
Expand All @@ -620,4 +614,4 @@ drop snapshot snapshot2;

drop table if exists cluster_table_1;
drop table if exists cluster_table_2;
drop database if exists procedure_test;
drop database if exists procedure_test;

0 comments on commit e0e86d6

Please sign in to comment.