nidus-sync/db/fieldseeker-schema/insert/insert_containerrelate_versioned.sql
Eli Ribble 97ec2c767d
Big checkpoint on new schema work
I have to checkpoint this because I'm trying to get a very complicated
multi-layered SQL query for inserting version history into the database
and I need to improve it iteratively

I've got a new binary that I can use to directly test complex stored
procedures. This is to shorted my testing loop.
2025-12-02 22:12:43 +00:00

64 lines
2.4 KiB
SQL

-- Prepared statement for conditional insert with versioning for fieldseeker.containerrelate
-- Only inserts a new version if data has changed
PREPARE insert_containerrelate_versioned(bigint, uuid, varchar, timestamp, varchar, timestamp, uuid, uuid, uuid, fieldseeker.containerrelate_mosquitocontainertype_enum, timestamp, varchar, timestamp, varchar) AS
WITH
-- Get the current latest version of this record
latest_version AS (
SELECT * FROM fieldseeker.containerrelate
WHERE objectid = $1
ORDER BY VERSION DESC
LIMIT 1
),
-- Calculate the next version number
next_version AS (
SELECT COALESCE(MAX(VERSION) + 1, 1) as version_num
FROM fieldseeker.containerrelate
WHERE objectid = $1
)
-- Perform conditional insert
INSERT INTO fieldseeker.containerrelate (
objectid, globalid, created_user, created_date, last_edited_user, last_edited_date, inspsampleid, mosquitoinspid, treatmentid, containertype, creationdate, creator, editdate, editor,
VERSION
)
SELECT
$1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14,
v.version_num
FROM next_version v
WHERE
-- Only insert if no record exists yet OR data has changed
NOT EXISTS (SELECT 1 FROM latest_version lv WHERE
lv.objectid IS NOT DISTINCT FROM $1 AND
lv.globalid IS NOT DISTINCT FROM $2 AND
lv.created_user IS NOT DISTINCT FROM $3 AND
lv.created_date IS NOT DISTINCT FROM $4 AND
lv.last_edited_user IS NOT DISTINCT FROM $5 AND
lv.last_edited_date IS NOT DISTINCT FROM $6 AND
lv.inspsampleid IS NOT DISTINCT FROM $7 AND
lv.mosquitoinspid IS NOT DISTINCT FROM $8 AND
lv.treatmentid IS NOT DISTINCT FROM $9 AND
lv.containertype IS NOT DISTINCT FROM $10 AND
lv.creationdate IS NOT DISTINCT FROM $11 AND
lv.creator IS NOT DISTINCT FROM $12 AND
lv.editdate IS NOT DISTINCT FROM $13 AND
lv.editor IS NOT DISTINCT FROM $14
)
RETURNING *;
-- Example usage: EXECUTE insert_containerrelate_versioned(id, value1, value2, ...);
-- Parameters in order:
-- $1: OBJECTID (bigint)
-- $2: GlobalID (uuid)
-- $3: created_user (varchar)
-- $4: created_date (timestamp)
-- $5: last_edited_user (varchar)
-- $6: last_edited_date (timestamp)
-- $7: INSPSAMPLEID (uuid)
-- $8: MOSQUITOINSPID (uuid)
-- $9: TREATMENTID (uuid)
-- $10: CONTAINERTYPE (fieldseeker.containerrelate_mosquitocontainertype_enum)
-- $11: CreationDate (timestamp)
-- $12: Creator (varchar)
-- $13: EditDate (timestamp)
-- $14: Editor (varchar)