From a68e6ec87150cda4e19135a4e1aa6752a45e88c6 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Sat, 11 Jul 2026 00:31:58 +0000 Subject: [PATCH] Tighten Basic HDR Formats Regex --- ops/206.tighten-basic-hdr-formats-regex.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ops/206.tighten-basic-hdr-formats-regex.sql diff --git a/ops/206.tighten-basic-hdr-formats-regex.sql b/ops/206.tighten-basic-hdr-formats-regex.sql new file mode 100644 index 00000000..143bc4f6 --- /dev/null +++ b/ops/206.tighten-basic-hdr-formats-regex.sql @@ -0,0 +1,9 @@ +-- @operation: export +-- @entity: batch +-- @name: Tighten Basic HDR Formats Regex +-- @exportedAt: 2026-07-11T00:31:57.232Z +-- @opIds: 12341 + +-- --- BEGIN op 12341 ( update regular_expression "Basic HDR Formats" ) +update "regular_expressions" set "pattern" = '\bHDR(\b|\d)|\b(DV|Dovi|Dolby[ .]?Vision|HLG|PQ(10)?)\b' where "name" = 'Basic HDR Formats' and "pattern" = 'HDR|\b(DV|Dovi|Dolby[ .]?Vision|HLG|PQ(10)?)\b'; +-- --- END op 12341