Re: Extend compatibility of PostgreSQL::Test::Cluster

Поиск
Список
Период
Сортировка
Искать
От
Andrew Dunstan
Тема
Re: Extend compatibility of PostgreSQL::Test::Cluster
Дата
Msg-id
d15f6d95-4a0d-a959-c186-edc636e392b2@dunslane.net
Ответ на
Список
Дерево обсуждения
Extend compatibility of PostgreSQL::Test::Cluster Andrew Dunstan <andrew@dunslane.net>
Re: Extend compatibility of PostgreSQL::Test::Cluster Andrew Dunstan <andrew@dunslane.net>
Re: Extend compatibility of PostgreSQL::Test::Cluster Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Re: Extend compatibility of PostgreSQL::Test::Cluster Andrew Dunstan <andrew@dunslane.net>
Re: Extend compatibility of PostgreSQL::Test::Cluster Andrew Dunstan <andrew@dunslane.net>
Re: Extend compatibility of PostgreSQL::Test::Cluster Michael Paquier <michael@paquier.xyz>
Re: Extend compatibility of PostgreSQL::Test::Cluster Andrew Dunstan <andrew@dunslane.net>
Re: Extend compatibility of PostgreSQL::Test::Cluster Andrew Dunstan <andrew@dunslane.net>
Re: Extend compatibility of PostgreSQL::Test::Cluster Michael Paquier <michael@paquier.xyz>
Re: Extend compatibility of PostgreSQL::Test::Cluster Andrew Dunstan <andrew@dunslane.net>

On 12/31/21 11:20, Dagfinn Ilmari Mannsåker wrote:
> Andrew Dunstan  writes:
>
>> +		my $subclass = __PACKAGE__ . "::V_$maj";
>> +		bless $node, $subclass;
>> +		unless ($node->isa(__PACKAGE__))
>> +		{
>> +			# It's not a subclass, so re-bless back into the main package
>> +			bless($node, __PACKAGE__);
>> +			carp "PostgreSQL::Test::Cluster isn't fully compatible with version $ver";
>> +		}
> The ->isa() method works on package names as well as blessed objects, so
> the back-and-forth blessing can be avoided.
>
> 	my $subclass = __PACKAGE__ . "::V_$maj";
> 	if ($subclass->isa(__PACKAGE__))
> 	{
> 		bless($node, $subclass);
> 	}
> 	else
> 	{
> 		carp "PostgreSQL::Test::Cluster isn't fully compatible with version $ver";
> 	}
>

OK, thanks, will fix in next version.


cheers


andrew

--
Andrew Dunstan
EDB: https://www.enterprisedb.com



В списке pgsql-hackers по дате отправления
От: Dagfinn Ilmari Mannsåker
Дата:
От: Justin Pryzby
Дата:
FAQ