Details
-
Bug
-
Status: Closed (View Workflow)
-
Trivial
-
Resolution: Fixed
-
10.3(EOL)
-
None
Description
create or replace table t1 (a int) with system versioning |
partition by system_time interval 1 second ( |
partition p0 history,
|
partition p1 history,
|
partition pc current |
);
|
-- wait for 3 seconds
|
insert into t1 values (1),(2),(3); |
show warnings;
|
10.3 9f84451d87 |
+---------+------+----------------------------------------------------------------------------------+
|
| Level | Code | Message |
|
+---------+------+----------------------------------------------------------------------------------+
|
| Warning | 4114 | Versioned table `test`.`t1`: partition `p1` is full, add more HISTORY partitions |
|
+---------+------+----------------------------------------------------------------------------------+
|
1 row in set (0.00 sec)
|
The warning is not wrong (apart being thrown at a strange time, when no historical rows are created; but for that we have a separate JIRA item). However, the text is confusing – the partition is not full, it's just expired.