consistency.
Per suggestion from Tom.
{"secs-per-test", required_argument, NULL, 's'},
{NULL, 0, NULL, 0}
};
+
int option; /* Command line option */
int optindex = 0; /* used by getopt_long */
{"duration", required_argument, NULL, 'd'},
{NULL, 0, NULL, 0}
};
+
int option; /* Command line option */
int optindex = 0; /* used by getopt_long */
int
main(int argc, char **argv)
{
+ static struct option long_options[] = {
+ {"foreign-keys", no_argument, &foreign_keys, 1},
+ {"index-tablespace", required_argument, NULL, 3},
+ {"tablespace", required_argument, NULL, 2},
+ {"unlogged-tables", no_argument, &unlogged_tables, 1},
+ {"sampling-rate", required_argument, NULL, 4},
+ {NULL, 0, NULL, 0}
+ };
+
int c;
int nclients = 1; /* default number of simulated clients */
int nthreads = 1; /* default number of threads */
int i;
- static struct option long_options[] = {
- {"foreign-keys", no_argument, &foreign_keys, 1},
- {"index-tablespace", required_argument, NULL, 3},
- {"tablespace", required_argument, NULL, 2},
- {"unlogged-tables", no_argument, &unlogged_tables, 1},
- {"sampling-rate", required_argument, NULL, 4},
- {NULL, 0, NULL, 0}
- };
-
#ifdef HAVE_GETRLIMIT
struct rlimit rlim;
#endif
{"verbose", no_argument, NULL, 'v'},
{NULL, 0, NULL, 0}
};
+
int c;
int option_index;
int
main(int argc, char *argv[])
{
- char *pghost = NULL;
- char *pgport = NULL;
- char *pguser = NULL;
- char *pgdb = NULL;
- char *use_role = NULL;
- enum trivalue prompt_password = TRI_DEFAULT;
- bool data_only = false;
- bool globals_only = false;
- bool output_clean = false;
- bool roles_only = false;
- bool tablespaces_only = false;
- PGconn *conn;
- int encoding;
- const char *std_strings;
- int c,
- ret;
- int optindex;
-
static struct option long_options[] = {
{"data-only", no_argument, NULL, 'a'},
{"clean", no_argument, NULL, 'c'},
{NULL, 0, NULL, 0}
};
+ char *pghost = NULL;
+ char *pgport = NULL;
+ char *pguser = NULL;
+ char *pgdb = NULL;
+ char *use_role = NULL;
+ enum trivalue prompt_password = TRI_DEFAULT;
+ bool data_only = false;
+ bool globals_only = false;
+ bool output_clean = false;
+ bool roles_only = false;
+ bool tablespaces_only = false;
+ PGconn *conn;
+ int encoding;
+ const char *std_strings;
+ int c,
+ ret;
+ int optindex;
+
set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_dump"));
progname = get_progname(argv[0]);
int
regression_main(int argc, char *argv[], init_function ifunc, test_function tfunc)
{
- _stringlist *sl;
- int c;
- int i;
- int option_index;
- char buf[MAXPGPATH * 4];
- char buf2[MAXPGPATH * 4];
-
static struct option long_options[] = {
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'V'},
{NULL, 0, NULL, 0}
};
+ _stringlist *sl;
+ int c;
+ int i;
+ int option_index;
+ char buf[MAXPGPATH * 4];
+ char buf2[MAXPGPATH * 4];
+
progname = get_progname(argv[0]);
set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_regress"));