Re-hash the way that we handle rendering of special types such as arrays. Fixes #2782. Fixes #2822.

This commit is contained in:
Harshal Dhumal
2017-12-13 11:53:27 +00:00
committed by Dave Page
parent 0c5a5ba9c2
commit 55254a649f
9 changed files with 294 additions and 265 deletions

View File

@@ -16,11 +16,11 @@
"13": ["", "false", "bool"],
"14": ["", "[null]", "text[]"],
"15": ["{}", "{}", "text[]"],
"16": ["{data,,'',\"\",\\'\\',\\\"\\\"}", "{data,[null],,,'',\"\"}", "text[]"],
"16": ["{data,NULL,'',\"\"}", "{data,NULL,'',\"\"}", "text[]"],
"17": ["{}", "{}", "int[]"],
"18": ["{123,,456}", "{123,[null],456}", "int[]"],
"18": ["{123,,456}", "{123,NULL,456}", "int[]"],
"19": ["", "[null]", "boolean[]"],
"20": ["{false,,true}", "{false,[null],true}", "boolean[]"]
"20": ["{false,null,true}", "{f,NULL,t}", "boolean[]"]
}
}
}