Failsafe JSON parsing
I have a string column that has JSON payloads in it. This is the way our partner stores messages from automated machines. The trouble is that their database sometimes gets non-JSON messages so my :payload column has rows that cannot be parsed to JSON simply. I wrapped my parse function with a Try block but even then I'm getting an alert for each row that includes non-JSON-compliant string. It even...