PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ add_key()

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

Definition at line 325 of file mvt.c.

326{
327 struct mvt_kv_key *kv;
328 size_t size = strlen(name);
329 kv = palloc(sizeof(*kv));
330 kv->id = ctx->keys_hash_i++;
331 kv->name = name;
332 HASH_ADD_KEYPTR(hh, ctx->keys_hash, name, size, kv);
333 return kv->id;
334}
uint32_t keys_hash_i
Definition mvt.h:96
struct mvt_kv_key * keys_hash
Definition mvt.h:83
uint32_t id
Definition mvt.c:65
UT_hash_handle hh
Definition mvt.c:66
char * name
Definition mvt.c:64

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: