Re: [PATCH] Send table rows to OCaml as tuples

2022-11-17 Thread Ihor Radchenko
neca...@gmail.com writes: > From: Rami Chowdhury > > Previously, tables (i.e. lists-of-lists) came through as > arrays-of-arrays. Since OCaml arrays are required to be homogeneous in > their types, this meant tables with heterogenous types within a row > could not be handled. This change

[PATCH] Send table rows to OCaml as tuples

2022-02-23 Thread necaris
From: Rami Chowdhury Previously, tables (i.e. lists-of-lists) came through as arrays-of-arrays. Since OCaml arrays are required to be homogeneous in their types, this meant tables with heterogenous types within a row could not be handled. This change represents tables as arrays of tuples, which