Re: WIP Incremental JSON Parser
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Andrew Dunstan <andrew@dunslane.net>
Cc: Amit Langote <amitlangote09@gmail.com>,
Jacob Champion <jacob.champion@enterprisedb.com>,
Robert Haas <robertmhaas@gmail.com>,
Peter Smith <smithpb2250@gmail.com>,
PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2024-04-04T16:04:45Z
Lists: pgsql-hackers
Oh, more problems: after running check-world in a non-VPATH build,
there are droppings all over my tree:
$ git status
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
src/interfaces/ecpg/test/sql/sqljson_jsontable
src/interfaces/ecpg/test/sql/sqljson_jsontable.c
src/test/modules/test_json_parser/test_json_parser_incremental
src/test/modules/test_json_parser/test_json_parser_perf
src/test/modules/test_json_parser/tmp_check/
nothing added to commit but untracked files present (use "git add" to track)
"make clean" or "make distclean" removes some of that but not all:
$ make -s distclean
$ git status
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
src/test/modules/test_json_parser/test_json_parser_incremental
src/test/modules/test_json_parser/test_json_parser_perf
nothing added to commit but untracked files present (use "git add" to track)
So we're short several .gitignore entries, and apparently also
shy a couple of make-clean rules.
regards, tom lane
Commits
-
Post review fixes for test_json_parser test module
- ba3e6e2bca97 17.0 landed
-
Shrink test file for test_json_parser module
- b8a7bfa33324 17.0 landed
-
Add support for incrementally parsing backup manifests
- ea7b4e9a2a7c 17.0 landed
-
Introduce a non-recursive JSON parser
- 3311ea86edc7 17.0 landed
-
Use incremental parsing of backup manifests.
- 222e11a10ae9 17.0 landed