]> granicus.if.org Git - postgresql/commitdiff
Don't use "#" as an abbreviation for "number" in PL/Tcl error messages.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 16 Sep 2015 16:08:57 +0000 (12:08 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 16 Sep 2015 16:08:57 +0000 (12:08 -0400)
Also, rewrite one error message to make it follow our message style
guidelines better.

Euler Taveira and Tom Lane

src/pl/tcl/pltcl.c

index edfda5915b24f06108cf35d6c482f72516183c28..dce5d04adf8a9514e7387a97e1e0f6987f4257ab 100644 (file)
@@ -1055,7 +1055,7 @@ pltcl_trigger_handler(PG_FUNCTION_ARGS, bool pltrusted)
                if (ret_numvals % 2 != 0)
                        ereport(ERROR,
                                        (errcode(ERRCODE_E_R_I_E_TRIGGER_PROTOCOL_VIOLATED),
-                                        errmsg("invalid return list from trigger - must have even # of elements")));
+                                        errmsg("trigger's return list must have even number of elements")));
 
                modattrs = (int *) palloc(tupdesc->natts * sizeof(int));
                modvalues = (Datum *) palloc(tupdesc->natts * sizeof(Datum));
@@ -2345,7 +2345,7 @@ pltcl_SPI_execute_plan(ClientData cdata, Tcl_Interp *interp,
                if (strlen(nulls) != qdesc->nargs)
                {
                        Tcl_SetResult(interp,
-                                          "length of nulls string doesn't match # of arguments",
+                                 "length of nulls string doesn't match number of arguments",
                                                  TCL_STATIC);
                        return TCL_ERROR;
                }
@@ -2370,12 +2370,12 @@ pltcl_SPI_execute_plan(ClientData cdata, Tcl_Interp *interp,
                        return TCL_ERROR;
 
                /************************************************************
-                * Check that the # of arguments matches
+                * Check that the number of arguments matches
                 ************************************************************/
                if (callnargs != qdesc->nargs)
                {
                        Tcl_SetResult(interp,
-                          "argument list length doesn't match # of arguments for query",
+                                                 "argument list length doesn't match number of arguments for query",
                                                  TCL_STATIC);
                        ckfree((char *) callargs);
                        return TCL_ERROR;