Skip to content

Commit

Permalink
Resolve Row size too large. The maximum row size for the used table t…
Browse files Browse the repository at this point in the history
…ype, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs
  • Loading branch information
nook24 committed Jul 15, 2021
1 parent 217a382 commit 4ade68e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions partitions_statusengine3.sql
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ CREATE TABLE `statusengine_hostchecks`
`early_timeout` tinyint(1) DEFAULT '0',
`latency` double DEFAULT '0',
`execution_time` double DEFAULT '0',
`perfdata` varchar(8192) DEFAULT NULL,
`perfdata` varchar(2048) DEFAULT NULL,
`command` varchar(1024) DEFAULT NULL,
`current_check_attempt` smallint(3) DEFAULT '0',
`max_check_attempts` smallint(3) DEFAULT '0',
Expand Down Expand Up @@ -126,7 +126,7 @@ CREATE TABLE `statusengine_servicechecks`
`early_timeout` tinyint(1) DEFAULT '0',
`latency` double DEFAULT '0',
`execution_time` double DEFAULT '0',
`perfdata` varchar(8192) DEFAULT NULL,
`perfdata` varchar(2048) DEFAULT NULL,
`command` varchar(1024) DEFAULT NULL,
`current_check_attempt` smallint(3) DEFAULT '0',
`max_check_attempts` smallint(3) DEFAULT '0',
Expand Down

0 comments on commit 4ade68e

Please sign in to comment.