Skip to content

Commit 96206f4

Browse files
authored
Merge pull request #208 from Mytherin/fixconstraintget
Consider relkind also when filtering relations
2 parents d5075c9 + 0a4f851 commit 96206f4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/storage/postgres_table_set.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ SELECT pg_namespace.oid AS namespace_id, relname, NULL relpages, NULL attname, N
3838
FROM pg_class
3939
JOIN pg_namespace ON relnamespace = pg_namespace.oid
4040
JOIN pg_constraint ON (pg_class.oid=pg_constraint.conrelid)
41-
WHERE contype IN ('p', 'u') ${CONDITION}
41+
WHERE relkind IN ('r', 'v', 'm', 'f', 'p') AND contype IN ('p', 'u') ${CONDITION}
4242
ORDER BY namespace_id, relname, attnum, constraint_id;
4343
)";
4444
string condition;
@@ -98,6 +98,9 @@ void PostgresTableSet::AddConstraint(PostgresResult &result, idx_t row, Postgres
9898
vector<string> columns;
9999
for (auto &split : splits) {
100100
auto index = std::stoull(split);
101+
if (index <= 0 || index > create_info.columns.LogicalColumnCount()) {
102+
return;
103+
}
101104
columns.push_back(create_info.columns.GetColumn(LogicalIndex(index - 1)).Name());
102105
}
103106

0 commit comments

Comments
 (0)