Fix error reporting in reindexdb
authorMichael Paquier <[email protected]>
Sat, 11 May 2019 04:01:29 +0000 (13:01 +0900)
committerMichael Paquier <[email protected]>
Sat, 11 May 2019 04:01:29 +0000 (13:01 +0900)
When failing to reindex a table, reindexdb would generate an extra error
message related to a database failure, which is misleading.

Backpatch all the way down, as this has been introduced by 85e9a5a0.

Discussion: https://postgr.es/m/CAOBaU_Yo61RwNO3cW6WVYWwH7EYMPuexhKqufb2nFGOdunbcHw@mail.gmail.com
Author: Julien Rouhaud
Reviewed-by: Daniel Gustafsson, Álvaro Herrera, Tom Lane, Michael
Paquier
Backpatch-through: 9.4

src/bin/scripts/reindexdb.c

index c95c1fff152e2394778976ff98043931cd947b19..7c7a82ddb98ffbb5941ad5c26cbe7c841aeaf87a 100644 (file)
@@ -264,7 +264,7 @@ reindex_one_database(const char *name, const char *dbname, const char *type,
        if (strcmp(type, "TABLE") == 0)
            fprintf(stderr, _("%s: reindexing of table \"%s\" in database \"%s\" failed: %s"),
                    progname, name, PQdb(conn), PQerrorMessage(conn));
-       if (strcmp(type, "INDEX") == 0)
+       else if (strcmp(type, "INDEX") == 0)
            fprintf(stderr, _("%s: reindexing of index \"%s\" in database \"%s\" failed: %s"),
                    progname, name, PQdb(conn), PQerrorMessage(conn));
        else