Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrhee-stripe committed Jul 17, 2023
1 parent cbb1dc3 commit d3084ce
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions internal/queries/queries.sql
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ LEFT JOIN
pg_catalog.pg_namespace AS owner_ns
ON owner_c.relnamespace = owner_ns.oid
WHERE seq_ns.nspname = 'public'
<<<<<<< HEAD
-- It doesn't belong to an extension
AND NOT EXISTS (
SELECT ext_depend.objid
Expand All @@ -227,15 +226,6 @@ AND NOT EXISTS (
AND ext_depend.objid = pg_seq.seqrelid
AND ext_depend.deptype = 'e'
);
=======
-- It doesn't belong to an extension
AND NOT EXISTS(
SELECT objid
FROM pg_catalog.pg_depend ext_depend
WHERE ext_depend.classid = 'pg_class'::regclass
AND ext_depend.objid = seq.seqrelid
AND ext_depend.deptype = 'e'
);

-- name: GetExtensions :many
SELECT
Expand Down

0 comments on commit d3084ce

Please sign in to comment.