Hello,
I have :
q) a:td[`event_id]
q)a
1593842
22654362884843
2563908870084
1387664880653
339905852016
2156427649825
1642323358028
623043133271
1516..
q)b:diffsample[`event_id]
q)b
344
266566
114473
564195
273347
8198
390285
571269
8414
107142
26581
514342
475446
288140
328516
396`2..
q)sum a in b
0i
q)where a in b
`long$()
Just to make sure:
q)sum b in a
0i
q)where b in a
`long$()
q)count a
50703
q)count b
633
And now, when I do:
q)count distinct (a,b)
51082
q)count (a,b)
51336
why do the (51336-51082) values get clobbered? I checked in the respective tables, all rows containing the missing event_ids are pristine.
Thanks,
Kumar