view MySQL/Plugins/GetLastChangeIndex.sql @ 743:78fdfbe7b1fd

Now verifying the DatabasePatchLevel (revision) in another transaction than the one that upgrades the schema
author Alain Mazy <am@orthanc.team>
date Fri, 03 Oct 2025 18:39:46 +0200
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;