Search code examples
integer-overflowlogparser

How to handle integer overflow in LogParser?


I'm selecting Sum(time-taken) from a big period of time logs and it is getting negative values. How do I handle it?


Solution

  • You could try doing a sum of TO_REAL(time-taken).