blob: 85ec9fc189f260a1bf3220864b87b6f26b5c27c2 [file] [log] [blame]
create table table_t (id int) partitioned by (dob date);
create table table_b (id int) partitioned by (dob date);
from table_b a insert overwrite table table_t select a.id,a.dob;