reproduce.bench

application/octet-stream

Filename: reproduce.bench
Type: application/octet-stream
Part: 1
Message: Re: BUG: Postgres 14 + vacuum_defer_cleanup_age + FOR UPDATE + UPDATE
      BEGIN;

      SELECT omg.*
         FROM something_is_wrong_here AS omg
         ORDER BY value
         LIMIT 1
         FOR UPDATE
      \gset


      UPDATE something_is_wrong_here SET value = :value + 1 WHERE id = :id;

      END;