Properly detect invalid JSON numbers when generating JSON.

Andrew Dunstan <andrew@dunslane.net>

Commit: 7dfd9f6f54de39b6d2d2ce52a2faf7c00310bc9d
Author: Andrew Dunstan <andrew@dunslane.net>
Date: 2013-12-27T22:21:04Z
Releases: 9.3.3
Properly detect invalid JSON numbers when generating JSON.

Instead of looking for characters that aren't valid in JSON numbers, we
simply pass the output string through the JSON number parser, and if it
fails the string is quoted. This means among other things that money and
domains over money will be quoted correctly and generate valid JSON.

Fixes bug #8676 reported by Anderson Cristian da Silva.

Backpatched to 9.2 where JSON generation was introduced.

Files

PathChange+/−
src/backend/utils/adt/json.c modified +23 −15