Mercurial > hg > orthanc-databases
view PostgreSQL/Plugins/GetLastChangeIndex.sql @ 161:2ccde9c7311b optimized-routes
added new optimized REST routes. this is a temporary work to try to speed up some routes (used by LRO). This way, we avoid another app to access the Orthanc DB and we skip the plugin SDK update for a very specific route
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Fri, 10 Jul 2020 13:26:47 +0200 |
parents | 1012fe77241c |
children |
line wrap: on
line source
-- In PostgreSQL, the most straightforward query would be to run: -- SELECT currval(pg_get_serial_sequence('Changes', 'seq'))". -- Unfortunately, this raises the error message "currval of sequence -- "changes_seq_seq" is not yet defined in this session" if no change -- has been inserted before the SELECT. We thus track the sequence -- index with a trigger. -- http://www.neilconway.org/docs/sequences/ INSERT INTO GlobalIntegers SELECT 6, CAST(COALESCE(MAX(seq), 0) AS BIGINT) FROM Changes; CREATE FUNCTION InsertedChangeFunc() RETURNS TRIGGER AS $body$ BEGIN UPDATE GlobalIntegers SET value = new.seq WHERE key = 6; RETURN NULL; END; $body$ LANGUAGE plpgsql; CREATE TRIGGER InsertedChange AFTER INSERT ON Changes FOR EACH ROW EXECUTE PROCEDURE InsertedChangeFunc();