Re: patch: Add JSON datatype to PostgreSQL (GSoC, WIP)

From: Joseph Adams <joeyadams3(dot)14159(at)gmail(dot)com>
To: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: patch: Add JSON datatype to PostgreSQL (GSoC, WIP)
Date: 2010-08-13 10:33:25
Message-ID: AANLkTimknK8xEKdn3Zjj7TH8RQLFwt=5mDk8F2O1zePJ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Updated patch: the JSON code has all been moved into core, so this
patch is now for a built-in data type. However, I factored the
general-purpose utility functions out into a different patch to be
reviewed separately, so this JSON data type patch won't work without
the utility patch at
http://archives.postgresql.org/pgsql-hackers/2010-08/msg00949.php .

I still need to improve the documentation, as it still looks like the
documentation for a module instead of a built-in data type. Also, the
code is not taking advantage of the json_type_t enum being built-in
yet; it still uses getEnumLabelOids (one of the utility functions) to
retrieve the OIDs dynamically.

Joey Adams

Attachment Content-Type Size
json-datatype-wip-03.diff application/octet-stream 166.3 KB

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2010-08-13 13:32:27 Re: Develop item from TODO list
Previous Message Mike Fowler 2010-08-13 09:54:14 Re: patch: General purpose utility functions used by the JSON data type