8000 chore: reapply oid conversion fix to lib · wasabigeek/postgres-meta@8531dc1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8531dc1

Browse files
committed
chore: reapply oid conversion fix to lib
1 parent 0058cc7 commit 8531dc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/PostgresMetaTable.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ SELECT
212212
FROM
213213
relationships
214214
WHERE
215-
(relationships.source_schema :: text = tables.schema AND relationships.source_table_name :: text = tables.name)
216-
OR (relationships.target_table_schema :: text = tables.schema AND relationships.target_table_name :: text = tables.name)`
215+
(relationships.source_schema = tables.schema AND relationships.source_table_name = tables.name)
216+
OR (relationships.target_table_schema = tables.schema AND relationships.target_table_name = tables.name)`
217217
)}
218218
FROM tables`

0 commit comments

Comments
 (0)
0