Skip to content
Snippets Groups Projects
Commit 744c3cd2 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

regproc cleanups

parent 290428dd
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/regproc.c,v 1.31 1998/10/02 05:10:11 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/regproc.c,v 1.32 1998/10/02 05:31:28 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -62,7 +62,7 @@ regprocin(char *pro_name_or_oid) ...@@ -62,7 +62,7 @@ regprocin(char *pro_name_or_oid)
if (HeapTupleIsValid(proctup)) if (HeapTupleIsValid(proctup))
result = (RegProcedure) proctup->t_oid; result = (RegProcedure) proctup->t_oid;
else else
elog(ERROR, "No such procedure with oid %s", pro_name_or_oid); elog(ERROR, "No procedure with oid %s", pro_name_or_oid);
} }
else else
{ {
...@@ -105,9 +105,9 @@ regprocin(char *pro_name_or_oid) ...@@ -105,9 +105,9 @@ regprocin(char *pro_name_or_oid)
index_close(idesc); index_close(idesc);
if (matches > 1) if (matches > 1)
elog(ERROR, "There is more than one %s procedure, supply oid in quotes.", pro_name_or_oid); elog(ERROR, "There is more than one procedure named %s.\n\tSupply the pg_proc oid inside single quotes.", pro_name_or_oid);
else if (matches == 0) else if (matches == 0)
elog(ERROR, "No such procedure %s", pro_name_or_oid); elog(ERROR, "No procedure with name %s", pro_name_or_oid);
} }
} }
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment