mirror of
https://github.com/pgvector/pgvector.git
synced 2025-04-19 22:22:14 +03:00
12 lines
126 B
Perl
12 lines
126 B
Perl
package PostgreSQL::Test::Cluster;
|
|
|
|
use PostgresNode;
|
|
|
|
sub new
|
|
{
|
|
my ($class, $name) = @_;
|
|
return get_new_node($name);
|
|
}
|
|
|
|
1;
|