Skip to content

Commit

Permalink
normalize whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
olirice committed Dec 16, 2024
1 parent a5e1f24 commit 0d23a3f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ begin
join pg_catalog.pg_namespace n
on c.relnamespace = n.oid
where
n.nspname = 'pgmq'
and c.relname like 'q_%'
and c.relkind in ('r', 'p', 'u')
n.nspname = 'pgmq'
and c.relname like 'q_%'
and c.relkind in ('r', 'p', 'u')
on conflict (queue_name) do nothing;
end if;
end $$;
Expand Down

0 comments on commit 0d23a3f

Please sign in to comment.