|
7 | 7 | * Portions Copyright (c) 1994, Regents of the University of California
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/backend/commands/trigger.c,v 1.63 2000/04/12 17:14:59 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/commands/trigger.c,v 1.64 2000/04/16 04:25:42 tgl Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -169,8 +169,8 @@ CreateTrigger(CreateTrigStmt *stmt)
|
169 | 169 | ObjectIdGetDatum(((Form_pg_proc)GETSTRUCT(tuple))->prolang),
|
170 | 170 | 0,0,0);
|
171 | 171 | if (!HeapTupleIsValid(langTup))
|
172 |
| -elog(ERROR,"CreateTrigger: cache lookup for PL failed"); |
173 |
| - |
| 172 | +elog(ERROR,"CreateTrigger: cache lookup for PL%ufailed", |
| 173 | + ((Form_pg_proc)GETSTRUCT(tuple))->prolang); |
174 | 174 | if (((Form_pg_language)GETSTRUCT(langTup))->lanispl== false)
|
175 | 175 | elog(ERROR,"CreateTrigger: only builtin, C and PL functions are supported");
|
176 | 176 | }
|
|