]> granicus.if.org Git - postgresql/commitdiff
Fix message style
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Thu, 6 Jun 2019 16:18:14 +0000 (12:18 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Thu, 6 Jun 2019 16:57:57 +0000 (12:57 -0400)
Mark one message not for translation, and prefer "cannot" over "may
not", per commentary from Robert Haas.

Discussion: https://postgr.es/m/20190430145813.GA29872@alvherre.pgsql

src/backend/access/heap/heapam.c
src/backend/access/table/tableamapi.c
src/test/regress/expected/create_am.out

index 419da8784ac80727e334df5e8cb9c919f57811f6..bf82304b0ff50916dbd2092479dc35fc3ace0607 100644 (file)
@@ -1301,7 +1301,7 @@ heap_getnext(TableScanDesc sscan, ScanDirection direction)
        if (unlikely(sscan->rs_rd->rd_tableam != GetHeapamTableAmRoutine()))
                ereport(ERROR,
                                (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
-                                errmsg("only heap AM is supported")));
+                                errmsg_internal("only heap AM is supported")));
 
        /* Note: no locking manipulations needed */
 
index 32877e7674f52d5d04a0dd4fe2d80b617791145c..34e6a4f20de4c7e52ddbba367758680d96790002 100644 (file)
@@ -106,7 +106,8 @@ check_default_table_access_method(char **newval, void **extra, GucSource source)
 {
        if (**newval == '\0')
        {
-               GUC_check_errdetail("default_table_access_method may not be empty.");
+               GUC_check_errdetail("%s cannot be empty.",
+                                                       "default_table_access_method");
                return false;
        }
 
index 352959b7518b26220ba9b8035572404013cb3b2d..f6d5c97cdedc88c58d3bf52714f08abcee3618a0 100644 (file)
@@ -110,7 +110,7 @@ NOTICE:  drop cascades to index grect2ind2
 -- prevent empty values
 SET default_table_access_method = '';
 ERROR:  invalid value for parameter "default_table_access_method": ""
-DETAIL:  default_table_access_method may not be empty.
+DETAIL:  default_table_access_method cannot be empty.
 -- prevent nonexistant values
 SET default_table_access_method = 'I do not exist AM';
 ERROR:  invalid value for parameter "default_table_access_method": "I do not exist AM"