PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ add_key()

static uint32_t add_key ( mvt_agg_context ctx,
char *  name 
)
static

Definition at line 275 of file mvt.c.

276 {
277  struct mvt_kv_key *kv;
278  size_t size = strlen(name);
279  kv = palloc(sizeof(*kv));
280  kv->id = ctx->keys_hash_i++;
281  kv->name = name;
282  HASH_ADD_KEYPTR(hh, ctx->keys_hash, name, size, kv);
283  return kv->id;
284 }
uint32_t keys_hash_i
Definition: mvt.h:94
struct mvt_kv_key * keys_hash
Definition: mvt.h:81
uint32_t id
Definition: mvt.c:69
UT_hash_handle hh
Definition: mvt.c:70
char * name
Definition: mvt.c:68
Definition: mvt.c:67

References mvt_kv_key::hh, mvt_kv_key::id, mvt_agg_context::keys_hash, mvt_agg_context::keys_hash_i, and mvt_kv_key::name.

Referenced by parse_column_keys(), and parse_jsonb().

Here is the caller graph for this function: