serializeTypeArray handles serialization from the standard representation to our serialized representation that is written in Dolt.
(ctx *sql.Context, t *DoltgresType, val any)
| 84 | // serializeTypeArray handles serialization from the standard representation to our serialized representation that is |
| 85 | // written in Dolt. |
| 86 | func serializeTypeArray(ctx *sql.Context, t *DoltgresType, val any) ([]byte, error) { |
| 87 | return serializeArray(ctx, val.([]any), t.ArrayBaseType()) |
| 88 | } |
| 89 | |
| 90 | // deserializeTypeArray handles deserialization from the Dolt serialized format to our standard representation used by |
| 91 | // expressions and nodes. |
nothing calls this directly
no test coverage detected