Does anyone know what is the limit on the size of JSON data type in PostgreSQL 9.2?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Looking at the source for PostgreSQL 9.2.1:
Update for PostgreSQL 9.3.5:
The code has changed in the
json_infunction, but the json internal representation is still text:So it appears that, for now at least,
jsonis the same as atextdatatype but with JSON validation. Thetextdatatype’s maximum size is 1GB.