summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb_alter_table/t/rename_column_cold_part_104.test
blob: e1e5f2460d5670f18e5999258f10a72f690f4d1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
source include/have_tokudb.inc;
source include/have_partition.inc;
set default_storage_engine='tokudb';
set tokudb_disable_hot_alter=1;

disable_warnings;
drop table if exists t;
enable_warnings;

create table t (x int, y int, primary key (x)) partition by hash(x) partitions 2;
alter table t change column y newy int;

drop table t;