References #3867 for PostGIS 2.5
git-svn-id: http://svn.osgeo.org/postgis/trunk@15850
b70326c6-7e19-0410-871a-
916f4a2858ee
if (k == -1 && typoid != JSONBOID)
elog(ERROR, "parse_values: unexpectedly could not find parsed key name '%s'", key);
if (typoid == JSONBOID) {
+#if POSTGIS_PGSQL_VERSION < 110
tags = parse_jsonb(ctx, DatumGetJsonb(datum), tags);
+#else
+ tags = parse_jsonb(ctx, DatumGetJsonbP(datum), tags);
+#endif
continue;
}
#else