123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <?php
- namespace PhpMyAdmin;
- class SubPartition
- {
-
- protected $db;
-
- protected $table;
-
- protected $name;
-
- protected $ordinal;
-
- protected $method;
-
- protected $expression;
-
- protected $rows;
-
- protected $dataLength;
-
- protected $indexLength;
-
- protected $comment;
-
- public function __construct(array $row)
- {
- $this->db = $row['TABLE_SCHEMA'];
- $this->table = $row['TABLE_NAME'];
- $this->loadData($row);
- }
-
- protected function loadData(array $row)
- {
- $this->name = $row['SUBPARTITION_NAME'];
- $this->ordinal = $row['SUBPARTITION_ORDINAL_POSITION'];
- $this->method = $row['SUBPARTITION_METHOD'];
- $this->expression = $row['SUBPARTITION_EXPRESSION'];
- $this->loadCommonData($row);
- }
-
- protected function loadCommonData(array $row)
- {
- $this->rows = $row['TABLE_ROWS'];
- $this->dataLength = $row['DATA_LENGTH'];
- $this->indexLength = $row['INDEX_LENGTH'];
- $this->comment = $row['PARTITION_COMMENT'];
- }
-
- public function getName()
- {
- return $this->name;
- }
-
- public function getOrdinal()
- {
- return $this->ordinal;
- }
-
- public function getMethod()
- {
- return $this->method;
- }
-
- public function getExpression()
- {
- return $this->expression;
- }
-
- public function getRows()
- {
- return $this->rows;
- }
-
- public function getDataLength()
- {
- return $this->dataLength;
- }
-
- public function getIndexLength()
- {
- return $this->indexLength;
- }
-
- public function getComment()
- {
- return $this->comment;
- }
- }
|