Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rsPa8-006tDD-Mi for pgsql-hackers@arkaria.postgresql.org; Thu, 04 Apr 2024 16:04:53 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1rsPa7-008ITn-Lz for pgsql-hackers@arkaria.postgresql.org; Thu, 04 Apr 2024 16:04:51 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rsPa7-008ITf-Cf for pgsql-hackers@lists.postgresql.org; Thu, 04 Apr 2024 16:04:51 +0000 Received: from sss.pgh.pa.us ([68.162.161.243]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rsPa5-000Yjs-3L for pgsql-hackers@lists.postgresql.org; Thu, 04 Apr 2024 16:04:50 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 434G4jpj606172; Thu, 4 Apr 2024 12:04:45 -0400 From: Tom Lane To: Andrew Dunstan cc: Amit Langote , Jacob Champion , Robert Haas , Peter Smith , PostgreSQL Hackers Subject: Re: WIP Incremental JSON Parser In-reply-to: <316e4bea-8a6e-488f-9b68-18a2adb57a02@dunslane.net> References: <7b0a51d6-0d9d-7366-3a1a-f74397a02f55@dunslane.net> <12e54bab-7b9e-c36e-5541-09e1603ae0a4@dunslane.net> <7ead3d4d-ddc6-2499-0a04-6b29c693ea4a@dunslane.net> <8447d168-b981-2601-8ad0-53827fe18e5a@dunslane.net> <544716.1712240802@sss.pg! ! h.pa.us> <158c19a9-f092-4f37-b555-2b5c5f85ffd8@dunslane.net> <549100.1712242815@sss.pgh.pa.us> <562157.1712243788@sss.pgh.pa.us> <316e! 4bea-8a6e-488f-9b68-18a2adb57a02@dunslane.net> Comments: In-reply-to Andrew Dunstan message dated "Thu, 04 Apr 2024 11:37:40 -0400" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <606170.1712246685.1@sss.pgh.pa.us> Date: Thu, 04 Apr 2024 12:04:45 -0400 Message-ID: <606171.1712246685@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk 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 ..." 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 ..." 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