serializeTypeInt16Vector handles serialization from the standard representation to our serialized representation that is written in Dolt.
(ctx *sql.Context, t *DoltgresType, val any)
| 60 | // serializeTypeInt16Vector handles serialization from the standard representation to our serialized representation that is |
| 61 | // written in Dolt. |
| 62 | func serializeTypeInt16Vector(ctx *sql.Context, t *DoltgresType, val any) ([]byte, error) { |
| 63 | vals := val.([]any) |
| 64 | return serializeArray(ctx, vals, Int16) |
| 65 | } |
| 66 | |
| 67 | // deserializeTypeInt16Vector handles deserialization from the Dolt serialized format to our standard representation used by |
| 68 | // expressions and nodes. |
nothing calls this directly
no test coverage detected