We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent05a0c83 commit960afefCopy full SHA for 960afef
src/include/utils/json_generic.h
@@ -97,11 +97,9 @@ typedef struct Json
97
98
#undef PG_RETURN_JSONB_P
99
#definePG_RETURN_JSONB_P(x)PG_RETURN_DATUM(JsonbPGetDatum(x))
100
-#definePG_RETURN_JSONT_P(x)PG_RETURN_DATUM(JsontPGetDatum(x))
101
102
#undefPG_GETARG_JSONB_P
103
#definePG_GETARG_JSONB_P(n)DatumGetJson(PG_GETARG_DATUM(n), &jsonbContainerOps, alloca(sizeof(Json)))/* FIXME conditional alloca() */
104
-#definePG_GETARG_JSONT_P(n)DatumGetJsontP(PG_GETARG_DATUM(n))
105
106
#definePG_FREE_IF_COPY_JSONB(json,n) JsonFree(json)
107
@@ -309,6 +307,5 @@ extern int lengthCompareJsonbString(const char *val1, int len1,
309
307
constchar*val2,intlen2);
310
308
311
externJsonContainerOpsjsonbContainerOps;
312
-externJsonContainerOpsjsontContainerOps;
313
314
#endif/* UTILS_JSON_GENERIC_H */