1998-12-13 04:20:49 +08:00
|
|
|
/*
|
|
|
|
moddatetime.c
|
|
|
|
|
2010-09-21 04:08:53 +08:00
|
|
|
contrib/spi/moddatetime.c
|
2006-03-11 12:38:42 +08:00
|
|
|
|
1998-12-13 04:20:49 +08:00
|
|
|
What is this?
|
2003-03-11 06:28:22 +08:00
|
|
|
It is a function to be called from a trigger for the purpose of updating
|
1998-12-13 04:20:49 +08:00
|
|
|
a modification datetime stamp in a record when that record is UPDATEd.
|
|
|
|
|
|
|
|
Credits
|
|
|
|
This is 95%+ based on autoinc.c, which I used as a starting point as I do
|
|
|
|
not really know what I am doing. I also had help from
|
2000-05-29 09:59:17 +08:00
|
|
|
Jan Wieck <jwieck@debis.com> who told me about the timestamp_in("now") function.
|
1998-12-13 04:20:49 +08:00
|
|
|
OH, me, I'm Terry Mackintosh <terry@terrym.com>
|
|
|
|
*/
|
2009-01-07 21:44:37 +08:00
|
|
|
#include "postgres.h"
|
1998-12-13 04:20:49 +08:00
|
|
|
|
2016-11-09 04:36:36 +08:00
|
|
|
#include "access/htup_details.h"
|
2009-01-07 21:44:37 +08:00
|
|
|
#include "catalog/pg_type.h"
|
|
|
|
#include "commands/trigger.h"
|
2019-10-23 11:56:22 +08:00
|
|
|
#include "executor/spi.h"
|
2016-12-29 01:00:00 +08:00
|
|
|
#include "utils/builtins.h"
|
2011-02-24 01:18:09 +08:00
|
|
|
#include "utils/rel.h"
|
1998-12-13 04:20:49 +08:00
|
|
|
|
2006-05-31 06:12:16 +08:00
|
|
|
PG_MODULE_MAGIC;
|
|
|
|
|
2000-11-21 04:36:57 +08:00
|
|
|
PG_FUNCTION_INFO_V1(moddatetime);
|
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
Datum
|
|
|
|
moddatetime(PG_FUNCTION_ARGS)
|
1998-12-13 04:20:49 +08:00
|
|
|
{
|
2000-05-29 09:59:17 +08:00
|
|
|
TriggerData *trigdata = (TriggerData *) fcinfo->context;
|
1998-12-13 04:20:49 +08:00
|
|
|
Trigger *trigger; /* to get trigger name */
|
|
|
|
int nargs; /* # of arguments */
|
|
|
|
int attnum; /* positional number of field to change */
|
2010-11-05 04:34:47 +08:00
|
|
|
Oid atttypid; /* type OID of field to change */
|
1998-12-13 04:20:49 +08:00
|
|
|
Datum newdt; /* The current datetime. */
|
2016-11-09 04:36:36 +08:00
|
|
|
bool newdtnull; /* null flag for it */
|
1998-12-13 04:20:49 +08:00
|
|
|
char **args; /* arguments */
|
|
|
|
char *relname; /* triggered relation name */
|
|
|
|
Relation rel; /* triggered relation */
|
|
|
|
HeapTuple rettuple = NULL;
|
|
|
|
TupleDesc tupdesc; /* tuple description */
|
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
if (!CALLED_AS_TRIGGER(fcinfo))
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
|
|
|
elog(ERROR, "moddatetime: not fired by trigger manager");
|
1998-12-13 04:20:49 +08:00
|
|
|
|
2010-10-09 01:27:31 +08:00
|
|
|
if (!TRIGGER_FIRED_FOR_ROW(trigdata->tg_event))
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
2010-10-09 01:27:31 +08:00
|
|
|
elog(ERROR, "moddatetime: must be fired for row");
|
1998-12-13 04:20:49 +08:00
|
|
|
|
2010-10-09 01:27:31 +08:00
|
|
|
if (!TRIGGER_FIRED_BEFORE(trigdata->tg_event))
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
|
|
|
elog(ERROR, "moddatetime: must be fired before event");
|
1998-12-13 04:20:49 +08:00
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
if (TRIGGER_FIRED_BY_INSERT(trigdata->tg_event))
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
2010-10-09 01:27:31 +08:00
|
|
|
elog(ERROR, "moddatetime: cannot process INSERT events");
|
2000-05-29 09:59:17 +08:00
|
|
|
else if (TRIGGER_FIRED_BY_UPDATE(trigdata->tg_event))
|
|
|
|
rettuple = trigdata->tg_newtuple;
|
1998-12-13 04:20:49 +08:00
|
|
|
else
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
Wording cleanup for error messages. Also change can't -> cannot.
Standard English uses "may", "can", and "might" in different ways:
may - permission, "You may borrow my rake."
can - ability, "I can lift that log."
might - possibility, "It might rain today."
Unfortunately, in conversational English, their use is often mixed, as
in, "You may use this variable to do X", when in fact, "can" is a better
choice. Similarly, "It may crash" is better stated, "It might crash".
2007-02-02 03:10:30 +08:00
|
|
|
elog(ERROR, "moddatetime: cannot process DELETE events");
|
1998-12-13 04:20:49 +08:00
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
rel = trigdata->tg_relation;
|
1998-12-13 04:20:49 +08:00
|
|
|
relname = SPI_getrelname(rel);
|
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
trigger = trigdata->tg_trigger;
|
1998-12-13 04:20:49 +08:00
|
|
|
|
|
|
|
nargs = trigger->tgnargs;
|
|
|
|
|
|
|
|
if (nargs != 1)
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
|
|
|
elog(ERROR, "moddatetime (%s): A single argument was expected", relname);
|
1998-12-13 04:20:49 +08:00
|
|
|
|
|
|
|
args = trigger->tgargs;
|
|
|
|
/* must be the field layout? */
|
|
|
|
tupdesc = rel->rd_att;
|
|
|
|
|
|
|
|
/*
|
2003-03-11 06:28:22 +08:00
|
|
|
* This gets the position in the tuple of the field we want. args[0] being
|
1998-12-13 04:20:49 +08:00
|
|
|
* the name of the field to update, as passed in from the trigger.
|
|
|
|
*/
|
|
|
|
attnum = SPI_fnumber(tupdesc, args[0]);
|
|
|
|
|
|
|
|
/*
|
2010-11-05 04:34:47 +08:00
|
|
|
* This is where we check to see if the field we are supposed to update
|
2016-11-09 02:11:15 +08:00
|
|
|
* even exists.
|
1998-12-13 04:20:49 +08:00
|
|
|
*/
|
2016-11-09 02:11:15 +08:00
|
|
|
if (attnum <= 0)
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_TRIGGERED_ACTION_EXCEPTION),
|
|
|
|
errmsg("\"%s\" has no attribute \"%s\"",
|
|
|
|
relname, args[0])));
|
1999-05-26 00:15:34 +08:00
|
|
|
|
1998-12-13 04:20:49 +08:00
|
|
|
/*
|
2010-11-05 04:34:47 +08:00
|
|
|
* Check the target field has an allowed type, and get the current
|
|
|
|
* datetime as a value of that type.
|
1998-12-13 04:20:49 +08:00
|
|
|
*/
|
2010-11-05 04:34:47 +08:00
|
|
|
atttypid = SPI_gettypeid(tupdesc, attnum);
|
|
|
|
if (atttypid == TIMESTAMPOID)
|
|
|
|
newdt = DirectFunctionCall3(timestamp_in,
|
|
|
|
CStringGetDatum("now"),
|
|
|
|
ObjectIdGetDatum(InvalidOid),
|
|
|
|
Int32GetDatum(-1));
|
|
|
|
else if (atttypid == TIMESTAMPTZOID)
|
|
|
|
newdt = DirectFunctionCall3(timestamptz_in,
|
|
|
|
CStringGetDatum("now"),
|
|
|
|
ObjectIdGetDatum(InvalidOid),
|
|
|
|
Int32GetDatum(-1));
|
|
|
|
else
|
|
|
|
{
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_TRIGGERED_ACTION_EXCEPTION),
|
2010-11-05 04:34:47 +08:00
|
|
|
errmsg("attribute \"%s\" of \"%s\" must be type TIMESTAMP or TIMESTAMPTZ",
|
2003-07-25 01:52:50 +08:00
|
|
|
args[0], relname)));
|
2010-11-05 04:34:47 +08:00
|
|
|
newdt = (Datum) 0; /* keep compiler quiet */
|
|
|
|
}
|
2016-11-09 04:36:36 +08:00
|
|
|
newdtnull = false;
|
1998-12-13 04:20:49 +08:00
|
|
|
|
2016-11-09 04:36:36 +08:00
|
|
|
/* Replace the attnum'th column with newdt */
|
|
|
|
rettuple = heap_modify_tuple_by_cols(rettuple, tupdesc,
|
|
|
|
1, &attnum, &newdt, &newdtnull);
|
1998-12-13 04:20:49 +08:00
|
|
|
|
2016-11-09 04:36:36 +08:00
|
|
|
/* Clean up */
|
1998-12-13 04:20:49 +08:00
|
|
|
pfree(relname);
|
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
return PointerGetDatum(rettuple);
|
1998-12-13 04:20:49 +08:00
|
|
|
}
|