summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorAndrew Dunstan2024-03-11 03:10:14 +0000
committerAndrew Dunstan2024-04-04 10:46:40 +0000
commit3311ea86edc7a689614bad754e17371865cdc11f (patch)
tree7c9d55385afb9b21a8c790a64b1b9ea8eedff90e /src/tools
parent585df02b445f63167f145685e045e5b6074a5a30 (diff)
Introduce a non-recursive JSON parser
This parser uses an explicit prediction stack, unlike the present recursive descent parser where the parser state is represented on the call stack. This difference makes the new parser suitable for use in incremental parsing of huge JSON documents that cannot be conveniently handled piece-wise by the recursive descent parser. One potential use for this will be in parsing large backup manifests associated with incremental backups. Because this parser is somewhat slower than the recursive descent parser, it is not replacing that parser, but is an additional parser available to callers. For testing purposes, if the build is done with -DFORCE_JSON_PSTACK, all JSON parsing is done with the non-recursive parser, in which case only trivial regression differences in error messages should be observed. Author: Andrew Dunstan Reviewed-By: Jacob Champion Discussion: https://postgr.es/m/7b0a51d6-0d9d-7366-3a1a-f74397a02f55@dunslane.net
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/pgindent/typedefs.list6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/pgindent/typedefs.list b/src/tools/pgindent/typedefs.list
index 8d08386d65c..b98e330e3ed 100644
--- a/src/tools/pgindent/typedefs.list
+++ b/src/tools/pgindent/typedefs.list
@@ -600,6 +600,7 @@ DiscardMode
DiscardStmt
DistanceValue
DistinctExpr
+DoState
DoStmt
DocRepresentation
DomainConstraintCache
@@ -1293,6 +1294,7 @@ JsonExprState
JsonFormat
JsonFormatType
JsonHashEntry
+JsonIncrementalState
JsonIsPredicate
JsonIterateStringValuesAction
JsonKeyValue
@@ -1300,15 +1302,19 @@ JsonLexContext
JsonLikeRegexContext
JsonManifestFileField
JsonManifestParseContext
+JsonManifestParseIncrementalState
JsonManifestParseState
JsonManifestSemanticState
JsonManifestWALRangeField
+JsonNonTerminal
JsonObjectAgg
JsonObjectConstructor
JsonOutput
JsonParseExpr
JsonParseContext
JsonParseErrorType
+JsonParserSem
+JsonParserStack
JsonPath
JsonPathBool
JsonPathDatatypeStatus