You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's giving me an array of interfaces of array of interfaces and so on.. to eventually find only the metadata column names in there. Row data is not present.
After printing them with fmt.Print its giving me following correct output: [[map[metadata:[map[name:CONSENSUSCHANGEID type:string] map[name:HEIGHT type:integer]] rows:[[initial 0]]]]]
So this means the data of the rows is somewhere in there and magically parsed by fmt.Print. Can someone please elaborate how one could parse this into a useable data form?
The text was updated successfully, but these errors were encountered:
I'm having issues parsing the result of the
Call
function of this client.In the Tarantool console i'm getting this response from a simple select:
While in the client after creating a function with
Lua
, so I can later reuse this logic.I'm getting this as response from the
client.Call
function.It's giving me an array of interfaces of array of interfaces and so on.. to eventually find only the metadata column names in there. Row data is not present.
After printing them with
fmt.Print
its giving me following correct output:[[map[metadata:[map[name:CONSENSUSCHANGEID type:string] map[name:HEIGHT type:integer]] rows:[[initial 0]]]]]
So this means the data of the rows is somewhere in there and magically parsed by
fmt.Print
. Can someone please elaborate how one could parse this into a useable data form?The text was updated successfully, but these errors were encountered: