@@ -342,7 +342,7 @@ check_for_data_types_usage(ClusterInfo *cluster, DataTypesUsageChecks *checks)
342
342
DataTypesUsageChecks * tmp = checks ;
343
343
int n_data_types_usage_checks = 0 ;
344
344
345
- prep_status ("Checking for data type usage" );
345
+ prep_status ("Checking data type usage" );
346
346
347
347
/* Gather number of checks to perform */
348
348
while (tmp -> status != NULL )
@@ -1756,7 +1756,7 @@ check_new_cluster_logical_replication_slots(void)
1756
1756
nslots_on_new = atoi (PQgetvalue (res , 0 , 0 ));
1757
1757
1758
1758
if (nslots_on_new )
1759
- pg_fatal ("Expected 0 logical replication slots but found %d. " ,
1759
+ pg_fatal ("expected 0 logical replication slots but found %d" ,
1760
1760
nslots_on_new );
1761
1761
1762
1762
PQclear (res );
@@ -1771,7 +1771,7 @@ check_new_cluster_logical_replication_slots(void)
1771
1771
wal_level = PQgetvalue (res , 0 , 0 );
1772
1772
1773
1773
if (strcmp (wal_level , "logical" ) != 0 )
1774
- pg_fatal ("\"wal_level\" must be \"logical\", but is set to \"%s\"" ,
1774
+ pg_fatal ("\"wal_level\" must be \"logical\" but is set to \"%s\"" ,
1775
1775
wal_level );
1776
1776
1777
1777
max_replication_slots = atoi (PQgetvalue (res , 1 , 0 ));
@@ -1895,7 +1895,7 @@ check_old_cluster_for_valid_slots(bool live_check)
1895
1895
fclose (script );
1896
1896
1897
1897
pg_log (PG_REPORT , "fatal" );
1898
- pg_fatal ("Your installation contains logical replication slots that can't be upgraded.\n"
1898
+ pg_fatal ("Your installation contains logical replication slots that cannot be upgraded.\n"
1899
1899
"You can remove invalid slots and/or consume the pending WAL for other slots,\n"
1900
1900
"and then restart the upgrade.\n"
1901
1901
"A list of the problematic slots is in the file:\n"
0 commit comments