@@ -22,6 +22,7 @@ static void help_add_instance(void);
22
22
static void help_del_instance (void );
23
23
static void help_archive_push (void );
24
24
static void help_archive_get (void );
25
+ static void help_checkdb (void );
25
26
26
27
void
27
28
help_command (char * command )
@@ -52,6 +53,8 @@ help_command(char *command)
52
53
help_archive_push ();
53
54
else if (strcmp (command , "archive-get" ) == 0 )
54
55
help_archive_get ();
56
+ else if (strcmp (command , "checkdb" ) == 0 )
57
+ help_checkdb ();
55
58
else if (strcmp (command , "--help" ) == 0
56
59
|| strcmp (command , "help" ) == 0
57
60
|| strcmp (command , "-?" ) == 0
@@ -416,11 +419,11 @@ help_checkdb(void)
416
419
printf (_ (" --progress show progress\n" ));
417
420
printf (_ (" -j, --threads=NUM number of parallel threads\n" ));
418
421
printf (_ (" --skip-block-validation skip file-level block checking\n" ));
419
- printf (_ (" can be used only with --amcheck option\n" ));
422
+ printf (_ (" can be used only with ' --amcheck' option\n" ));
420
423
printf (_ (" --amcheck in addition to file-level block checking\n" ));
421
- printf (_ (" check btree indexes using 'amcheck' or 'amcheck_next' extension" ));
424
+ printf (_ (" check btree indexes using 'amcheck' or 'amcheck_next' extension\n " ));
422
425
printf (_ (" --heapallindexed also check that heap is indexed\n" ));
423
- printf (_ (" can be used only with --amcheck option\n" ));
426
+ printf (_ (" can be used only with ' --amcheck' option\n" ));
424
427
425
428
printf (_ ("\n Logging options:\n" ));
426
429
printf (_ (" --log-level-console=log-level-console\n" ));
0 commit comments