sys_flow_plan_context_binding where the binding hash is null are useless and should not be createdDescriptionsys_flow_plan_context_binding where the binding hash is null don't add value and consume system resources unnecessarily.Steps to Reproduce Create a flow which triggers on every updateTrigger the flow Expected: no new records in sys_flow_plan_context_bindingActual: new records are created in sys_flow_plan_context_bindingWorkaroundsys_flow_plan_context_binding where hash_code is empty can safely be deleted https://<instance>/sys_flow_plan_context_binding_list.do?sysparm_query=hash_codeISEMPTY&sysparm_view= This script may be used to delete them:var gr = new GlideRecord("sys_flow_plan_context_binding");gr.addEncodedQuery("hash_code=NULL");gr.setWorkflow(false);gr.deleteMultiple(); Related Problem: PRB1502267