That is by design.
The
There're 2 ways to workaround that: one is to manually change the column type to allow higher values (f.e.
The
topic_views
field is mediumint(8) UNSIGNED
for MySQL which means the maximum value of 16777215
is allowed. If a topic views count goes beyond this value, the MySQL error occurs.There're 2 ways to workaround that: one is to manually change the column type to allow higher values (f.e.
int(10)
) and another is to manually drop the value of topic_views
column for the topic down to f.e. 0.Statistics: Posted by rxu — Thu Jan 30, 2025 3:08 am