-
Notifications
You must be signed in to change notification settings - Fork 129
Closed
Labels
typesIssues related to type conversionsIssues related to type conversions
Description
Description
Postgres does not support a generic MAP type. So we need to make some concessions here. But what we can do is the following:
- If people actually select a MAP column in the output of their query, we should probably just convert it to its text representation.
- To allow operations on it like indexing, should define a new Postgres type called
duckdb.map
and implement the index/subscript operator on it. That subscript operator should then return aduckdb.unresolved_type
, similarly to how the index/subscript operator is implemented onduckdb.unresolved_type
.
Once we do this we can un-exclude:
map, |
Metadata
Metadata
Assignees
Labels
typesIssues related to type conversionsIssues related to type conversions