交换分区测试
|
create table test1(x int) ); create table test2(x int) alter table test1 exchange partition x2 with table test2 without validation; select * from test1 partition(x2) t; |
|
create table test1(x int) ); create table test2(x int) alter table test1 exchange partition x2 with table test2 without validation; select * from test1 partition(x2) t; |