From 0eabaf2dd7ca08909f3446ed7eb054ee0c33551d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 17 Aug 2015 23:02:29 +0530 Subject: [PATCH] Load comments at sub partition level is sub partitioning is used Signed-off-by: Madhura Jayaratne --- libraries/Partition.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Partition.class.php b/libraries/Partition.class.php index 72944de4b6..ea961426b9 100644 --- a/libraries/Partition.class.php +++ b/libraries/Partition.class.php @@ -66,7 +66,6 @@ class PMA_SubPartition { $this->db = $row['TABLE_SCHEMA']; $this->table = $row['TABLE_NAME']; - $this->comment = $row['PARTITION_COMMENT']; $this->loadData($row); } @@ -98,6 +97,7 @@ class PMA_SubPartition $this->rows = $row['TABLE_ROWS']; $this->dataLength = $row['DATA_LENGTH']; $this->indexLength = $row['INDEX_LENGTH']; + $this->comment = $row['PARTITION_COMMENT']; } /**