Hi,
Ok, this looks really odd. If it helps - I am at kdb-2.7.
First this: q) h: hopen ::5050 and then q) h "table1: ([] col1:
long$(); col2: timestamp$())" and finally q) h "
table1 insert (1j;.z.p)"
At this point I do see the data in table1.
The issue arises when I am trying to access the data from C api:
int c = khp(“localhost”, 5050);
K rows = k(c, “select from table1”, K(0));
K flip = ktd(rows);
At this point flip = 0 and I figure rows->t = -128 which means something is wrong here. Just changed col2 to long and everything falls into place. So what is going on here? No support for timestamp in KDB C in 2.7?
Thanks!!