Skip to content

Commit

Permalink
MDEV-16023 Unfortunate error message WARN_VERS_PART_FULL (partition <…
Browse files Browse the repository at this point in the history
…name> is full) when rotation time for the last interval passed

* remove one case of WARN_VERS_PART_FULL
  • Loading branch information
FooBarrior committed Jul 30, 2018
1 parent 2ddbe0d commit 89e63a5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions mysql-test/suite/versioning/r/partition_rotation.result
Expand Up @@ -8,8 +8,6 @@ insert t1 values (1);
delete from t1;
set timestamp=unix_timestamp('2001-02-04 10:20:50');
insert t1 values (2);
Warnings:
Warning 4114 Versioned table `test`.`t1`: partition `p1` is full, add more HISTORY partitions
delete from t1;
select subpartition_name,partition_description,table_rows from information_schema.partitions where table_schema='test' and table_name='t1';
subpartition_name partition_description table_rows
Expand Down
1 change: 0 additions & 1 deletion sql/partition_info.cc
Expand Up @@ -873,7 +873,6 @@ void partition_info::vers_set_hist_part(THD *thd)
if (next->range_value > thd->query_start())
return;
}
goto warn;
}
return;
warn:
Expand Down

0 comments on commit 89e63a5

Please sign in to comment.