LCOV - code coverage report
Current view: top level - src/bin/scripts - clusterdb.c (source / functions) Coverage Total Hit
Test: PostgreSQL 20devel Lines: 77.4 % 146 113
Test Date: 2026-07-21 04:15:46 Functions: 100.0 % 4 4
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
Branches: 66.7 % 51 34

             Branch data     Line data    Source code
       1                 :             : /*-------------------------------------------------------------------------
       2                 :             :  *
       3                 :             :  * clusterdb
       4                 :             :  *
       5                 :             :  * Portions Copyright (c) 2002-2026, PostgreSQL Global Development Group
       6                 :             :  *
       7                 :             :  * src/bin/scripts/clusterdb.c
       8                 :             :  *
       9                 :             :  *-------------------------------------------------------------------------
      10                 :             :  */
      11                 :             : 
      12                 :             : #include "postgres_fe.h"
      13                 :             : #include "common.h"
      14                 :             : #include "common/logging.h"
      15                 :             : #include "fe_utils/cancel.h"
      16                 :             : #include "fe_utils/option_utils.h"
      17                 :             : #include "fe_utils/query_utils.h"
      18                 :             : #include "fe_utils/simple_list.h"
      19                 :             : 
      20                 :             : 
      21                 :             : static void cluster_one_database(const ConnParams *cparams, const char *table,
      22                 :             :                                  const char *progname, bool verbose, bool echo);
      23                 :             : static void cluster_all_databases(ConnParams *cparams, SimpleStringList *tables,
      24                 :             :                                   const char *progname, bool verbose, bool echo,
      25                 :             :                                   bool quiet);
      26                 :             : static void help(const char *progname);
      27                 :             : 
      28                 :             : 
      29                 :             : int
      30                 :          12 : main(int argc, char *argv[])
      31                 :             : {
      32                 :             :     static struct option long_options[] = {
      33                 :             :         {"host", required_argument, NULL, 'h'},
      34                 :             :         {"port", required_argument, NULL, 'p'},
      35                 :             :         {"username", required_argument, NULL, 'U'},
      36                 :             :         {"no-password", no_argument, NULL, 'w'},
      37                 :             :         {"password", no_argument, NULL, 'W'},
      38                 :             :         {"echo", no_argument, NULL, 'e'},
      39                 :             :         {"quiet", no_argument, NULL, 'q'},
      40                 :             :         {"dbname", required_argument, NULL, 'd'},
      41                 :             :         {"all", no_argument, NULL, 'a'},
      42                 :             :         {"table", required_argument, NULL, 't'},
      43                 :             :         {"verbose", no_argument, NULL, 'v'},
      44                 :             :         {"maintenance-db", required_argument, NULL, 2},
      45                 :             :         {NULL, 0, NULL, 0}
      46                 :             :     };
      47                 :             : 
      48                 :             :     const char *progname;
      49                 :             :     int         optindex;
      50                 :             :     int         c;
      51                 :             : 
      52                 :          12 :     const char *dbname = NULL;
      53                 :          12 :     const char *maintenance_db = NULL;
      54                 :          12 :     char       *host = NULL;
      55                 :          12 :     char       *port = NULL;
      56                 :          12 :     char       *username = NULL;
      57                 :          12 :     enum trivalue prompt_password = TRI_DEFAULT;
      58                 :             :     ConnParams  cparams;
      59                 :          12 :     bool        echo = false;
      60                 :          12 :     bool        quiet = false;
      61                 :          12 :     bool        alldb = false;
      62                 :          12 :     bool        verbose = false;
      63                 :          12 :     SimpleStringList tables = {NULL, NULL};
      64                 :             : 
      65                 :          12 :     pg_logging_init(argv[0]);
      66                 :          12 :     progname = get_progname(argv[0]);
      67                 :          12 :     set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pgscripts"));
      68                 :             : 
      69                 :          12 :     handle_help_version_opts(argc, argv, "clusterdb", help);
      70                 :             : 
      71         [ +  + ]:          22 :     while ((c = getopt_long(argc, argv, "ad:eh:p:qt:U:vwW", long_options, &optindex)) != -1)
      72                 :             :     {
      73   [ +  +  +  -  :          13 :         switch (c)
          -  -  +  -  +  
             -  -  -  + ]
      74                 :             :         {
      75                 :           4 :             case 'a':
      76                 :           4 :                 alldb = true;
      77                 :           4 :                 break;
      78                 :           1 :             case 'd':
      79                 :           1 :                 dbname = pg_strdup(optarg);
      80                 :           1 :                 break;
      81                 :           2 :             case 'e':
      82                 :           2 :                 echo = true;
      83                 :           2 :                 break;
      84                 :           0 :             case 'h':
      85                 :           0 :                 host = pg_strdup(optarg);
      86                 :           0 :                 break;
      87                 :           0 :             case 'p':
      88                 :           0 :                 port = pg_strdup(optarg);
      89                 :           0 :                 break;
      90                 :           0 :             case 'q':
      91                 :           0 :                 quiet = true;
      92                 :           0 :                 break;
      93                 :           3 :             case 't':
      94                 :           3 :                 simple_string_list_append(&tables, optarg);
      95                 :           3 :                 break;
      96                 :           0 :             case 'U':
      97                 :           0 :                 username = pg_strdup(optarg);
      98                 :           0 :                 break;
      99                 :           2 :             case 'v':
     100                 :           2 :                 verbose = true;
     101                 :           2 :                 break;
     102                 :           0 :             case 'w':
     103                 :           0 :                 prompt_password = TRI_NO;
     104                 :           0 :                 break;
     105                 :           0 :             case 'W':
     106                 :           0 :                 prompt_password = TRI_YES;
     107                 :           0 :                 break;
     108                 :           0 :             case 2:
     109                 :           0 :                 maintenance_db = pg_strdup(optarg);
     110                 :           0 :                 break;
     111                 :           1 :             default:
     112                 :             :                 /* getopt_long already emitted a complaint */
     113                 :           1 :                 pg_log_error_hint("Try \"%s --help\" for more information.", progname);
     114                 :           1 :                 exit(1);
     115                 :             :         }
     116                 :             :     }
     117                 :             : 
     118                 :             :     /*
     119                 :             :      * Non-option argument specifies database name as long as it wasn't
     120                 :             :      * already specified with -d / --dbname
     121                 :             :      */
     122   [ +  +  +  - ]:           9 :     if (optind < argc && dbname == NULL)
     123                 :             :     {
     124                 :           1 :         dbname = argv[optind];
     125                 :           1 :         optind++;
     126                 :             :     }
     127                 :             : 
     128         [ -  + ]:           9 :     if (optind < argc)
     129                 :             :     {
     130                 :           0 :         pg_log_error("too many command-line arguments (first is \"%s\")",
     131                 :             :                      argv[optind]);
     132                 :           0 :         pg_log_error_hint("Try \"%s --help\" for more information.", progname);
     133                 :           0 :         exit(1);
     134                 :             :     }
     135                 :             : 
     136                 :             :     /* fill cparams except for dbname, which is set below */
     137                 :           9 :     cparams.pghost = host;
     138                 :           9 :     cparams.pgport = port;
     139                 :           9 :     cparams.pguser = username;
     140                 :           9 :     cparams.prompt_password = prompt_password;
     141                 :           9 :     cparams.override_dbname = NULL;
     142                 :             : 
     143                 :           9 :     setup_cancel_handler(NULL);
     144                 :             : 
     145         [ +  + ]:           9 :     if (alldb)
     146                 :             :     {
     147         [ -  + ]:           4 :         if (dbname)
     148                 :           0 :             pg_fatal("cannot cluster all databases and a specific one at the same time");
     149                 :             : 
     150                 :           4 :         cparams.dbname = maintenance_db;
     151                 :             : 
     152                 :           4 :         cluster_all_databases(&cparams, &tables,
     153                 :             :                               progname, verbose, echo, quiet);
     154                 :             :     }
     155                 :             :     else
     156                 :             :     {
     157         [ +  + ]:           5 :         if (dbname == NULL)
     158                 :             :         {
     159         [ +  - ]:           3 :             if (getenv("PGDATABASE"))
     160                 :           3 :                 dbname = getenv("PGDATABASE");
     161         [ #  # ]:           0 :             else if (getenv("PGUSER"))
     162                 :           0 :                 dbname = getenv("PGUSER");
     163                 :             :             else
     164                 :           0 :                 dbname = get_user_name_or_exit(progname);
     165                 :             :         }
     166                 :             : 
     167                 :           5 :         cparams.dbname = dbname;
     168                 :             : 
     169         [ +  + ]:           5 :         if (tables.head != NULL)
     170                 :             :         {
     171                 :             :             SimpleStringListCell *cell;
     172                 :             : 
     173         [ +  + ]:           3 :             for (cell = tables.head; cell; cell = cell->next)
     174                 :             :             {
     175                 :           2 :                 cluster_one_database(&cparams, cell->val,
     176                 :             :                                      progname, verbose, echo);
     177                 :             :             }
     178                 :             :         }
     179                 :             :         else
     180                 :           3 :             cluster_one_database(&cparams, NULL,
     181                 :             :                                  progname, verbose, echo);
     182                 :             :     }
     183                 :             : 
     184                 :           7 :     exit(0);
     185                 :             : }
     186                 :             : 
     187                 :             : 
     188                 :             : static void
     189                 :          17 : cluster_one_database(const ConnParams *cparams, const char *table,
     190                 :             :                      const char *progname, bool verbose, bool echo)
     191                 :             : {
     192                 :             :     PQExpBufferData sql;
     193                 :             : 
     194                 :             :     PGconn     *conn;
     195                 :             : 
     196                 :          17 :     conn = connectDatabase(cparams, progname, echo, false, true);
     197                 :             : 
     198                 :          16 :     initPQExpBuffer(&sql);
     199                 :             : 
     200                 :          16 :     appendPQExpBufferStr(&sql, "CLUSTER");
     201         [ +  + ]:          16 :     if (verbose)
     202                 :           7 :         appendPQExpBufferStr(&sql, " VERBOSE");
     203         [ +  + ]:          16 :     if (table)
     204                 :             :     {
     205                 :           4 :         appendPQExpBufferChar(&sql, ' ');
     206                 :           4 :         appendQualifiedRelation(&sql, table, conn, echo);
     207                 :             :     }
     208                 :          15 :     appendPQExpBufferChar(&sql, ';');
     209                 :             : 
     210         [ -  + ]:          15 :     if (!executeMaintenanceCommand(conn, sql.data, echo))
     211                 :             :     {
     212         [ #  # ]:           0 :         if (table)
     213                 :           0 :             pg_log_error("clustering of table \"%s\" in database \"%s\" failed: %s",
     214                 :             :                          table, PQdb(conn), PQerrorMessage(conn));
     215                 :             :         else
     216                 :           0 :             pg_log_error("clustering of database \"%s\" failed: %s",
     217                 :             :                          PQdb(conn), PQerrorMessage(conn));
     218                 :           0 :         PQfinish(conn);
     219                 :           0 :         exit(1);
     220                 :             :     }
     221                 :          15 :     PQfinish(conn);
     222                 :          15 :     termPQExpBuffer(&sql);
     223                 :          15 : }
     224                 :             : 
     225                 :             : 
     226                 :             : static void
     227                 :           4 : cluster_all_databases(ConnParams *cparams, SimpleStringList *tables,
     228                 :             :                       const char *progname, bool verbose, bool echo,
     229                 :             :                       bool quiet)
     230                 :             : {
     231                 :             :     PGconn     *conn;
     232                 :             :     PGresult   *result;
     233                 :             :     int         i;
     234                 :             : 
     235                 :           4 :     conn = connectMaintenanceDatabase(cparams, progname, echo);
     236                 :           4 :     result = executeQuery(conn,
     237                 :             :                           "SELECT datname FROM pg_database WHERE datallowconn AND datconnlimit <> -2 ORDER BY 1;",
     238                 :             :                           echo);
     239                 :           4 :     PQfinish(conn);
     240                 :             : 
     241         [ +  + ]:          16 :     for (i = 0; i < PQntuples(result); i++)
     242                 :             :     {
     243                 :          12 :         char       *dbname = PQgetvalue(result, i, 0);
     244                 :             : 
     245         [ +  - ]:          12 :         if (!quiet)
     246                 :             :         {
     247                 :          12 :             printf(_("%s: clustering database \"%s\"\n"), progname, dbname);
     248                 :          12 :             fflush(stdout);
     249                 :             :         }
     250                 :             : 
     251                 :          12 :         cparams->override_dbname = dbname;
     252                 :             : 
     253         [ +  + ]:          12 :         if (tables->head != NULL)
     254                 :             :         {
     255                 :             :             SimpleStringListCell *cell;
     256                 :             : 
     257         [ +  + ]:           4 :             for (cell = tables->head; cell; cell = cell->next)
     258                 :           2 :                 cluster_one_database(cparams, cell->val,
     259                 :             :                                      progname, verbose, echo);
     260                 :             :         }
     261                 :             :         else
     262                 :          10 :             cluster_one_database(cparams, NULL,
     263                 :             :                                  progname, verbose, echo);
     264                 :             :     }
     265                 :             : 
     266                 :           4 :     PQclear(result);
     267                 :           4 : }
     268                 :             : 
     269                 :             : 
     270                 :             : static void
     271                 :           1 : help(const char *progname)
     272                 :             : {
     273                 :           1 :     printf(_("%s clusters all previously clustered tables in a database.\n\n"), progname);
     274                 :           1 :     printf(_("Usage:\n"));
     275                 :           1 :     printf(_("  %s [OPTION]... [DBNAME]\n"), progname);
     276                 :           1 :     printf(_("\nOptions:\n"));
     277                 :           1 :     printf(_("  -a, --all                 cluster all databases\n"));
     278                 :           1 :     printf(_("  -d, --dbname=DBNAME       database to cluster\n"));
     279                 :           1 :     printf(_("  -e, --echo                show the commands being sent to the server\n"));
     280                 :           1 :     printf(_("  -q, --quiet               don't write any messages\n"));
     281                 :           1 :     printf(_("  -t, --table=TABLE         cluster specific table(s) only\n"));
     282                 :           1 :     printf(_("  -v, --verbose             write a lot of output\n"));
     283                 :           1 :     printf(_("  -V, --version             output version information, then exit\n"));
     284                 :           1 :     printf(_("  -?, --help                show this help, then exit\n"));
     285                 :           1 :     printf(_("\nConnection options:\n"));
     286                 :           1 :     printf(_("  -h, --host=HOSTNAME       database server host or socket directory\n"));
     287                 :           1 :     printf(_("  -p, --port=PORT           database server port\n"));
     288                 :           1 :     printf(_("  -U, --username=USERNAME   user name to connect as\n"));
     289                 :           1 :     printf(_("  -w, --no-password         never prompt for password\n"));
     290                 :           1 :     printf(_("  -W, --password            force password prompt\n"));
     291                 :           1 :     printf(_("  --maintenance-db=DBNAME   alternate maintenance database\n"));
     292                 :           1 :     printf(_("\nRead the description of the SQL command CLUSTER for details.\n"));
     293                 :           1 :     printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
     294                 :           1 :     printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
     295                 :           1 : }
        

Generated by: LCOV version 2.0-1