| Server IP : 3.96.16.70 / Your IP : 216.73.216.15 Web Server : Apache System : Linux ip-172-31-26-103.ca-central-1.compute.internal 6.1.163-186.299.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Feb 24 16:35:42 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/prod1.wondermakr.com/phpmyadmin/test/classes/Partitioning/ |
Upload File : |
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Partitioning;
use PhpMyAdmin\Partitioning\SubPartition;
use PHPUnit\Framework\TestCase;
/**
* @covers \PhpMyAdmin\Partitioning\SubPartition
*/
class SubPartitionTest extends TestCase
{
public function testSubPartition(): void
{
$row = [
'TABLE_SCHEMA' => 'TABLE_SCHEMA',
'TABLE_NAME' => 'TABLE_NAME',
'SUBPARTITION_NAME' => 'subpartition_name',
'SUBPARTITION_ORDINAL_POSITION' => 1,
'SUBPARTITION_METHOD' => 'subpartition_method',
'SUBPARTITION_EXPRESSION' => 'subpartition_expression',
'TABLE_ROWS' => 2,
'DATA_LENGTH' => 3,
'INDEX_LENGTH' => 4,
'PARTITION_COMMENT' => 'partition_comment',
];
$object = new SubPartition($row);
self::assertSame('subpartition_name', $object->getName());
self::assertSame(1, $object->getOrdinal());
self::assertSame('subpartition_method', $object->getMethod());
self::assertSame('subpartition_expression', $object->getExpression());
self::assertSame(2, $object->getRows());
self::assertSame(3, $object->getDataLength());
self::assertSame(4, $object->getIndexLength());
self::assertSame('partition_comment', $object->getComment());
}
}