From d68219114c0ccfc72875a956a3266bca827287fc Mon Sep 17 00:00:00 2001 From: Seraphys Date: Sun, 26 Apr 2026 09:00:15 -0500 Subject: [PATCH] Update HDR10 Regex --- ops/126.update-hdr10-regex.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ops/126.update-hdr10-regex.sql diff --git a/ops/126.update-hdr10-regex.sql b/ops/126.update-hdr10-regex.sql new file mode 100644 index 00000000..96f0b4ca --- /dev/null +++ b/ops/126.update-hdr10-regex.sql @@ -0,0 +1,9 @@ +-- @operation: export +-- @entity: batch +-- @name: Update HDR10 Regex +-- @exportedAt: 2026-04-26T14:00:14.047Z +-- @opIds: 7977 + +-- --- BEGIN op 7977 ( update regular_expression "HDR10" ) +update "regular_expressions" set "pattern" = '\bHDR10(?!\+|P(lus)?)\b' where "name" = 'HDR10' and "pattern" = '\bHDR10(?!\+|Plus)\b'; +-- --- END op 7977