--- /dev/null
+BEGIN;
+
+#SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version);
+
+# LP#1744341 - Allow hold targeter to process frozen holds to update hold copy maps.
+
+# Side effect is that frozen holds get checked to see if they are expired.
+# Normally expire_time is unset when a hold is frozen, but there may have
+# been some bugs in the past that have allowed frozen holds to have it set.
+
+# This will just fix those so no holds get unexpectedly canceled.
+
+# Clear the expire_time from frozen holds.
+UPDATE action.hold_request
+ set expire_time=null
+where
+ frozen
+ and expire_time IS NOT NULL
+ and cancel_time IS NULL
+ and fulfillment_time IS NULL
+ and capture_time IS NULL
+;
+
+COMMIT;