LOW_PRIORITY

With the LOW_PRIORITY modifier, execution of UPDATE is delayed.

Input

# LOW_PRIORITY 
UPDATE LOW_PRIORITY employees SET department_id=2;

Output

-- LOW_PRIORITY     
UPDATE "public"."employees" SET "department_id" = 2;