summaryrefslogtreecommitdiff
path: root/mysql-test/suite/parts/t/partition_alter_maria.test
blob: e21f0dfab82d4fbb2974eea2a7c9a0446915cc58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# MDEV-13937 Aria engine: Internal Error 160 after partition handling 
#
source include/have_partition.inc;
create table t1 (
  pk bigint not null auto_increment,
  dt datetime default null,
  unique (pk, dt)
) engine=aria row_format=dynamic
  partition by range  columns(dt) (
    partition `p20171231` values less than ('2017-12-31'),
    partition `p20181231` values less than ('2018-12-31')
);
insert into t1 values (1,'2017-09-28 15:12:00');
select * from t1;
alter table t1 drop partition p20181231;
select * from t1;
drop table t1;

--let $engine=Aria
--source inc/part_alter_values.inc