PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ parse_datum_as_string()

static void parse_datum_as_string ( mvt_agg_context ctx,
struct feature_builder feature,
Oid  typoid,
Datum  datum,
uint32_t  k 
)
inlinestatic

Definition at line 545 of file mvt.c.

546 {
547  Oid foutoid;
548  bool typisvarlena;
549  char *value;
550  POSTGIS_DEBUG(2, "parse_value_as_string called");
551  getTypeOutputInfo(typoid, &foutoid, &typisvarlena);
552  value = OidOutputFunctionCall(foutoid, datum);
553  POSTGIS_DEBUGF(4, "parse_value_as_string value: %s", value);
554  add_value_as_string(ctx, feature, value, k);
555 }
static void add_value_as_string(mvt_agg_context *ctx, struct feature_builder *feature, char *value, uint32_t k)
Definition: mvt.c:536
int value
Definition: genraster.py:62

References add_value_as_string(), and genraster::value.

Referenced by parse_values().

Here is the call graph for this function:
Here is the caller graph for this function: