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