diff options
-rw-r--r-- | src/test/perl/PostgresNode.pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm index 5cfcbcf810b..8158ea5b2f5 100644 --- a/src/test/perl/PostgresNode.pm +++ b/src/test/perl/PostgresNode.pm @@ -302,6 +302,20 @@ sub backup_dir =pod +=item $node->install_path() + +The configured install path (if any) for the node. + +=cut + +sub install_path +{ + my ($self) = @_; + return $self->{_install_path}; +} + +=pod + =item $node->info() Return a string containing human-readable diagnostic information (paths, etc) |