deserializeTypeOidvector handles deserialization from the Dolt serialized format to our standard representation used by expressions and nodes.
(ctx *sql.Context, t *DoltgresType, data []byte)
| 68 | // deserializeTypeOidvector handles deserialization from the Dolt serialized format to our standard representation used by |
| 69 | // expressions and nodes. |
| 70 | func deserializeTypeOidvector(ctx *sql.Context, t *DoltgresType, data []byte) (any, error) { |
| 71 | return deserializeArray(ctx, data, Oid) |
| 72 | } |
nothing calls this directly
no test coverage detected