@@ -276,11 +276,12 @@ old_9_3_check_for_line_data_type_usage(ClusterInfo *cluster)
276
276
if (check_for_data_type_usage (cluster , "pg_catalog.line" , output_path ))
277
277
{
278
278
pg_log (PG_REPORT , "fatal\n" );
279
- pg_fatal ("Your installation contains the \"line\" data type in user tables. This\n"
280
- "data type changed its internal and input/output format between your old\n"
281
- "and new clusters so this cluster cannot currently be upgraded. You can\n"
282
- "remove the problem tables and restart the upgrade. A list of the problem\n"
283
- "columns is in the file:\n"
279
+ pg_fatal ("Your installation contains the \"line\" data type in user tables.\n"
280
+ "This data type changed its internal and input/output format\n"
281
+ "between your old and new versions so this\n"
282
+ "cluster cannot currently be upgraded. You can\n"
283
+ "drop the problem columns and restart the upgrade.\n"
284
+ "A list of the problem columns is in the file:\n"
284
285
" %s\n\n" , output_path );
285
286
}
286
287
else
@@ -313,9 +314,10 @@ old_9_6_check_for_unknown_data_type_usage(ClusterInfo *cluster)
313
314
if (check_for_data_type_usage (cluster , "pg_catalog.unknown" , output_path ))
314
315
{
315
316
pg_log (PG_REPORT , "fatal\n" );
316
- pg_fatal ("Your installation contains the \"unknown\" data type in user tables. This\n"
317
- "data type is no longer allowed in tables, so this cluster cannot currently\n"
318
- "be upgraded. You can remove the problem tables and restart the upgrade.\n"
317
+ pg_fatal ("Your installation contains the \"unknown\" data type in user tables.\n"
318
+ "This data type is no longer allowed in tables, so this\n"
319
+ "cluster cannot currently be upgraded. You can\n"
320
+ "drop the problem columns and restart the upgrade.\n"
319
321
"A list of the problem columns is in the file:\n"
320
322
" %s\n\n" , output_path );
321
323
}
@@ -456,10 +458,10 @@ old_11_check_for_sql_identifier_data_type_usage(ClusterInfo *cluster)
456
458
output_path ))
457
459
{
458
460
pg_log (PG_REPORT , "fatal\n" );
459
- pg_fatal ("Your installation contains the \"sql_identifier\" data type in user tables\n"
460
- "and/or indexes. The on-disk format for this data type has changed, so this\n"
461
- "cluster cannot currently be upgraded. You can remove the problem tables or \n"
462
- "change the data type to \"name\" and restart the upgrade.\n"
461
+ pg_fatal ("Your installation contains the \"sql_identifier\" data type in user tables. \n"
462
+ "The on-disk format for this data type has changed, so this\n"
463
+ "cluster cannot currently be upgraded. You can\n"
464
+ "drop the problem columns and restart the upgrade.\n"
463
465
"A list of the problem columns is in the file:\n"
464
466
" %s\n\n" , output_path );
465
467
}
0 commit comments