-
Strange data type prevents table operation on what looks like a table
I have this table:
tab:([]time:2?.z.P;col1:((`col11`col12!(1;3));(`col11`col12!(5;33)));col2:((`col11`col12!(1;3));(`col11`col12!(5;33)))) time col1 col2 ----------------------------------------------------------------- 2015.10.24D22:29:46.626037056 `col11`col12!1 3 `col11`col12!1 3 2004.03.06D21:27:43.089887728 `col11`col12!5 33 `col11`col12!5 33
I am doing the following operations on it :
cols exec col1 from tab
Now, I would expect that to work, but when I run a type on that exec operation i get a 0h even though it looks like an actual table (see below)
col11 col12 ----------- 1 3 5 33
It works if I do something like this:
cols{x}each ?[tab;();();`col1]
Does anyone know why that table looks like a table, but it’s not a table ?
Log in to reply.