Have you ever tried to store a number like this 113044638720122 and then use views to filter it?
I was trying to use these large numbers, I used CCK decimal precision to 32 and Views. In a simple test, I passed 113044638720122 as fixed argument, then I looked to the query and the argument was changed to 2147483647 (which is like 2^32/2-1, signed integer max).
Do you know a human way to use these big numbers as arguments? Views is converting my decimal (ckk field) to some numeric type with less precision... and that corrupts my arguments and results.
I also tried store these numbers in strings, but if I do that I can't set "Allow multiple terms per argument", and that's a big limit.
Any clue? Thanks a lot.