Seems to have been missed in GetPgUserName updates.

This commit is contained in:
Tom Lane 2000-12-04 01:25:35 +00:00
parent 7a4cc54e58
commit 74b8fe1717
1 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,7 @@
#include "executor/spi.h" /* this is what you need to work with SPI */ #include "executor/spi.h" /* this is what you need to work with SPI */
#include "commands/trigger.h" /* -"- and triggers */ #include "commands/trigger.h" /* -"- and triggers */
#include "miscadmin.h" /* for GetPgUserName() */ #include "miscadmin.h" /* for GetUserName() */
extern Datum insert_username(PG_FUNCTION_ARGS); extern Datum insert_username(PG_FUNCTION_ARGS);
@ -64,7 +64,8 @@ insert_username(PG_FUNCTION_ARGS)
relname, args[0]); relname, args[0]);
/* create fields containing name */ /* create fields containing name */
newval = DirectFunctionCall1(textin, CStringGetDatum(GetPgUserName())); newval = DirectFunctionCall1(textin,
CStringGetDatum(GetUserName(GetUserId())));
/* construct new tuple */ /* construct new tuple */
rettuple = SPI_modifytuple(rel, rettuple, 1, &attnum, &newval, NULL); rettuple = SPI_modifytuple(rel, rettuple, 1, &attnum, &newval, NULL);