Mercurial > hg > orthanc-databases
view MySQL/Plugins/GetLastChangeIndex.sql @ 756:97da5aa716a0 pg-next-699
renaming supports_extended_queues as supports_reserve_queue_value
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Tue, 18 Nov 2025 18:37:45 +0100 |
| parents | 740d9829f52e |
| children |
line wrap: on
line source
CREATE TABLE IF NOT EXISTS GlobalIntegers( property INTEGER PRIMARY KEY, value BIGINT ); DELETE FROM GlobalIntegers WHERE property = 0; INSERT INTO GlobalIntegers SELECT 0, COALESCE(MAX(seq), 0) FROM Changes; DROP TRIGGER IF EXISTS ChangeAdded; CREATE TRIGGER ChangeAdded AFTER INSERT ON Changes FOR EACH ROW BEGIN UPDATE GlobalIntegers SET value = new.seq WHERE property = 0@ END;
