1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

New moddatetime contrib from Terry Mackintosh.

This commit is contained in:
Bruce Momjian
1998-12-12 20:20:49 +00:00
parent 0d5a08f769
commit 14f9dde379
4 changed files with 140 additions and 1 deletions

View File

@ -0,0 +1,27 @@
DROP TABLE mdt;
CREATE TABLE mdt (
id int4,
idesc text,
moddate datetime DEFAULT datetime(CURRENT_TIMESTAMP) NOT NULL
);
CREATE TRIGGER mdt_moddatetime
BEFORE UPDATE ON mdt
FOR EACH ROW
EXECUTE PROCEDURE moddatetime (moddate);
INSERT INTO mdt VALUES (1, 'first');
INSERT INTO mdt VALUES (2, 'second');
INSERT INTO mdt VALUES (3, 'third');
SELECT * FROM mdt;
UPDATE mdt SET id = 4
WHERE id = 1;
UPDATE mdt SET id = 5
WHERE id = 2;
UPDATE mdt SET id = 6
WHERE id = 3;
SELECT * FROM mdt;