mirror of
https://github.com/postgres/postgres.git
synced 2025-05-29 16:21:20 +03:00
Reported-by: Michael Paquier Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz Backpatch-through: 12
18 lines
330 B
Perl
18 lines
330 B
Perl
|
|
# Copyright (c) 2021-2024, PostgreSQL Global Development Group
|
|
|
|
use strict;
|
|
use warnings FATAL => 'all';
|
|
|
|
use PostgreSQL::Test::Utils;
|
|
use Test::More;
|
|
|
|
#########################################
|
|
# Basic checks
|
|
|
|
program_help_ok('oid2name');
|
|
program_version_ok('oid2name');
|
|
program_options_handling_ok('oid2name');
|
|
|
|
done_testing();
|