]> granicus.if.org Git - postgresql/commitdiff
Remove invitation to report a bug about unknown encoding
authorPeter Eisentraut <peter_e@gmx.net>
Thu, 27 Oct 2016 16:00:00 +0000 (12:00 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Thu, 27 Oct 2016 22:43:46 +0000 (18:43 -0400)
The error message when we couldn't determine the encoding from a locale
said to report a bug about that.  That might have been appropriate when
this code was first added, but by now this works pretty solidly and any
encodings we don't recognize we probably just don't support.  We still
print the warning, but no longer invite the bug report.

src/port/chklocale.c

index 915821a4e91d16997235997f9fa095f205e00726..fa4f74d6107b08eb5011bd74b9d02a77f0ebfb87 100644 (file)
@@ -290,8 +290,7 @@ pg_codepage_to_encoding(UINT cp)
                        return encoding_match_list[i].pg_enc_code;
 
        ereport(WARNING,
-                       (errmsg("could not determine encoding for codeset \"%s\"", sys),
-                  errdetail("Please report this to <pgsql-bugs@postgresql.org>.")));
+                       (errmsg("could not determine encoding for codeset \"%s\"", sys)));
 
        return -1;
 }
@@ -419,8 +418,7 @@ pg_get_encoding_from_locale(const char *ctype, bool write_message)
 #else
                ereport(WARNING,
                                (errmsg("could not determine encoding for locale \"%s\": codeset is \"%s\"",
-                                               ctype, sys),
-                  errdetail("Please report this to <pgsql-bugs@postgresql.org>.")));
+                                               ctype, sys)));
 #endif
        }